Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1118)

Unified Diff: media/tools/omx_test/file_reader_util.h

Issue 6250198: More out-of-lining of test code, along with a bunch of GMOCK objects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Really fix the gyp files this time Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/tools/omx_test/file_reader_util.h
diff --git a/media/tools/omx_test/file_reader_util.h b/media/tools/omx_test/file_reader_util.h
index 4bd028f4a10a4ae836f842097bc1b31ea2d23ff2..01216e84c80f6553e1fbcd0569902a99a081e2f0 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:

Powered by Google App Engine
This is Rietveld 408576698