Remove obsolete types from common_types.h

- #define WEBRTC_DLLEXPORT
- class RewindableStream, InStream, OutStream
- enum FileFormats, PayloadFrequencies, VadModes

Bug: webrtc:7626
Change-Id: Idcbb241f3b48204ca9ac760987197f0458157527
Reviewed-on: https://webrtc-review.googlesource.com/69300
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Fredrik Solenberg <solenberg@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#22839}
This commit is contained in:
Fredrik Solenberg
2018-04-11 19:04:37 +02:00
committed by Commit Bot
parent 09abeb9d11
commit 98a91ad454
2 changed files with 7 additions and 59 deletions

View File

@ -18,13 +18,12 @@
#include "rtc_base/criticalsection.h"
#include "typedefs.h" // NOLINT(build/include)
// Implementation of an InStream and OutStream that can read (exclusive) or
// write from/to a file.
// Implementation that can read (exclusive) or write from/to a file.
namespace webrtc {
// TODO(tommi): Remove the base classes, rename to rtc::File and move to base.
class FileWrapper : public InStream, public OutStream {
// TODO(tommi): Rename to rtc::File and move to base.
class FileWrapper final {
public:
static const size_t kMaxFileNameSize = 1024;
@ -34,7 +33,7 @@ class FileWrapper : public InStream, public OutStream {
static FileWrapper Open(const char* file_name_utf8, bool read_only);
FileWrapper(FILE* file, size_t max_size);
~FileWrapper() override;
~FileWrapper();
// Support for move semantics.
FileWrapper(FileWrapper&& other);
@ -61,9 +60,9 @@ class FileWrapper : public InStream, public OutStream {
int Flush();
// Rewinds the file to the start.
int Rewind() override;
int Read(void* buf, size_t length) override;
bool Write(const void* buf, size_t length) override;
int Rewind();
int Read(void* buf, size_t length);
bool Write(const void* buf, size_t length);
private:
FileWrapper();