diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-08 00:18:24 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-08 00:18:24 +0000 |
commit | 0a071a315daf2a8af0f7b85c84127cda268db2f5 (patch) | |
tree | 6927656c616bb451c2b31605a964b9cf7529632b /media | |
parent | cfbf0a1af6efcfdfdb540a59d8c167a9736a405c (diff) | |
download | chromium_src-0a071a315daf2a8af0f7b85c84127cda268db2f5.zip chromium_src-0a071a315daf2a8af0f7b85c84127cda268db2f5.tar.gz chromium_src-0a071a315daf2a8af0f7b85c84127cda268db2f5.tar.bz2 |
More out-of-lining of test code, along with a bunch of GMOCK objects.
Most notably, rename various mock_objects.h files in remoting/ because after deinlining, there were compile failures. This fixes Windows compiling because you can't have two implementation files with the same name in a project, even if they are in different directories. (The output from one compile will clobber the others!)
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/6250198
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@74059 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/tools/omx_test/file_reader_util.cc | 4 | ||||
-rw-r--r-- | media/tools/omx_test/file_reader_util.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/media/tools/omx_test/file_reader_util.cc b/media/tools/omx_test/file_reader_util.cc index 1ba7cea..a599d2f 100644 --- a/media/tools/omx_test/file_reader_util.cc +++ b/media/tools/omx_test/file_reader_util.cc @@ -46,6 +46,8 @@ YuvFileReader::YuvFileReader(const FilePath& path, output_nv21_(enable_csc) { } +YuvFileReader::~YuvFileReader() {} + void YuvFileReader::Read(uint8** output, int* size) { if (!file()) { *size = 0; @@ -230,6 +232,8 @@ H264FileReader::H264FileReader(const FilePath& path) used_(0) { } +H264FileReader::~H264FileReader() {} + void H264FileReader::Read(uint8** output, int *size) { // Fill the buffer when it's less than half full. int read = 0; diff --git a/media/tools/omx_test/file_reader_util.h b/media/tools/omx_test/file_reader_util.h index 4bd028f..01216e8 100644 --- a/media/tools/omx_test/file_reader_util.h +++ b/media/tools/omx_test/file_reader_util.h @@ -61,6 +61,8 @@ class YuvFileReader : public BasicFileReader { int height, int loop_count, bool output_nv21); + virtual ~YuvFileReader(); + virtual void Read(uint8** output, int* size); private: @@ -105,6 +107,7 @@ class FFmpegFileReader : public FileReader { class H264FileReader : public BasicFileReader { public: explicit H264FileReader(const FilePath& path); + virtual ~H264FileReader(); virtual void Read(uint8** output, int* size); private: |