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

Unified Diff: media/filters/pipeline_integration_test_base.h

Issue 670623002: Change base::TickClock to a ref counted class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@audio_redesign
Patch Set: y Created 6 years, 2 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/cast/test/skewed_tick_clock.h ('k') | media/filters/video_frame_scheduler_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/filters/pipeline_integration_test_base.h
diff --git a/media/filters/pipeline_integration_test_base.h b/media/filters/pipeline_integration_test_base.h
index 2f0d647000a188630e9a82805db024765a7811c4..1847a775a0b1e601896bae7489f63bd793e4c866 100644
--- a/media/filters/pipeline_integration_test_base.h
+++ b/media/filters/pipeline_integration_test_base.h
@@ -38,9 +38,11 @@ extern const char kNullAudioHash[];
class DummyTickClock : public base::TickClock {
public:
DummyTickClock() : now_() {}
- virtual ~DummyTickClock() {}
virtual base::TimeTicks NowTicks() override;
+
private:
+ virtual ~DummyTickClock() {}
+
base::TimeTicks now_;
};
« no previous file with comments | « media/cast/test/skewed_tick_clock.h ('k') | media/filters/video_frame_scheduler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698