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

Unified Diff: media/filters/pipeline_integration_test_base.h

Issue 655713003: Standardize usage of virtual/override/final in media/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/filters/pipeline_integration_test.cc ('k') | media/filters/renderer_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..bee3d2467abdd28189d2c220b5fd69e9b1604c22 100644
--- a/media/filters/pipeline_integration_test_base.h
+++ b/media/filters/pipeline_integration_test_base.h
@@ -38,8 +38,9 @@ extern const char kNullAudioHash[];
class DummyTickClock : public base::TickClock {
public:
DummyTickClock() : now_() {}
- virtual ~DummyTickClock() {}
- virtual base::TimeTicks NowTicks() override;
+ ~DummyTickClock() override {}
+ base::TimeTicks NowTicks() override;
+
private:
base::TimeTicks now_;
};
« no previous file with comments | « media/filters/pipeline_integration_test.cc ('k') | media/filters/renderer_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698