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

Unified Diff: media/base/mock_filters.h

Issue 12262058: Revert r180578, r180591, and r180604 from 1410 branch. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1410/src/
Patch Set: Created 7 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
« no previous file with comments | « media/base/filter_collection_unittest.cc ('k') | media/base/pipeline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/mock_filters.h
===================================================================
--- media/base/mock_filters.h (revision 182591)
+++ media/base/mock_filters.h (working copy)
@@ -134,7 +134,6 @@
class MockVideoRenderer : public VideoRenderer {
public:
MockVideoRenderer();
- virtual ~MockVideoRenderer();
// VideoRenderer implementation.
MOCK_METHOD10(Initialize, void(const scoped_refptr<DemuxerStream>& stream,
@@ -154,6 +153,9 @@
MOCK_METHOD1(Stop, void(const base::Closure& callback));
MOCK_METHOD1(SetPlaybackRate, void(float playback_rate));
+ protected:
+ virtual ~MockVideoRenderer();
+
private:
DISALLOW_COPY_AND_ASSIGN(MockVideoRenderer);
};
@@ -161,7 +163,6 @@
class MockAudioRenderer : public AudioRenderer {
public:
MockAudioRenderer();
- virtual ~MockAudioRenderer();
// AudioRenderer implementation.
MOCK_METHOD9(Initialize, void(const scoped_refptr<DemuxerStream>& stream,
@@ -182,6 +183,9 @@
MOCK_METHOD1(SetVolume, void(float volume));
MOCK_METHOD1(ResumeAfterUnderflow, void(bool buffer_more_audio));
+ protected:
+ virtual ~MockAudioRenderer();
+
private:
DISALLOW_COPY_AND_ASSIGN(MockAudioRenderer);
};
« no previous file with comments | « media/base/filter_collection_unittest.cc ('k') | media/base/pipeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698