summaryrefslogtreecommitdiffstats
path: root/base/test/simple_test_clock.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/test/simple_test_clock.h')
-rw-r--r--base/test/simple_test_clock.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/test/simple_test_clock.h b/base/test/simple_test_clock.h
index a49cc53..e8a79c5 100644
--- a/base/test/simple_test_clock.h
+++ b/base/test/simple_test_clock.h
@@ -19,9 +19,9 @@ class SimpleTestClock : public Clock {
public:
// Starts off with a clock set to Time().
SimpleTestClock();
- virtual ~SimpleTestClock();
+ ~SimpleTestClock() override;
- virtual Time Now() override;
+ Time Now() override;
// Advances the clock by |delta|.
void Advance(TimeDelta delta);