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

Side by Side Diff: base/debug/trace_event_synthetic_delay_unittest.cc

Issue 614103004: replace 'virtual ... OVERRIDE' with '... override' (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: process base/ 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/debug/trace_event_synthetic_delay.h" 5 #include "base/debug/trace_event_synthetic_delay.h"
6 6
7 #include "testing/gtest/include/gtest/gtest.h" 7 #include "testing/gtest/include/gtest/gtest.h"
8 8
9 namespace base { 9 namespace base {
10 namespace debug { 10 namespace debug {
11 namespace { 11 namespace {
12 12
13 const int kTargetDurationMs = 100; 13 const int kTargetDurationMs = 100;
14 // Allow some leeway in timings to make it possible to run these tests with a 14 // Allow some leeway in timings to make it possible to run these tests with a
15 // wall clock time source too. 15 // wall clock time source too.
16 const int kShortDurationMs = 10; 16 const int kShortDurationMs = 10;
17 17
18 } // namespace 18 } // namespace
19 19
20 class TraceEventSyntheticDelayTest : public testing::Test, 20 class TraceEventSyntheticDelayTest : public testing::Test,
21 public TraceEventSyntheticDelayClock { 21 public TraceEventSyntheticDelayClock {
22 public: 22 public:
23 TraceEventSyntheticDelayTest() {} 23 TraceEventSyntheticDelayTest() {}
24 virtual ~TraceEventSyntheticDelayTest() { 24 virtual ~TraceEventSyntheticDelayTest() {
25 ResetTraceEventSyntheticDelays(); 25 ResetTraceEventSyntheticDelays();
26 } 26 }
27 27
28 // TraceEventSyntheticDelayClock implementation. 28 // TraceEventSyntheticDelayClock implementation.
29 virtual base::TimeTicks Now() OVERRIDE { 29 base::TimeTicks Now() override {
30 AdvanceTime(base::TimeDelta::FromMilliseconds(kShortDurationMs / 10)); 30 AdvanceTime(base::TimeDelta::FromMilliseconds(kShortDurationMs / 10));
31 return now_; 31 return now_;
32 } 32 }
33 33
34 TraceEventSyntheticDelay* ConfigureDelay(const char* name) { 34 TraceEventSyntheticDelay* ConfigureDelay(const char* name) {
35 TraceEventSyntheticDelay* delay = TraceEventSyntheticDelay::Lookup(name); 35 TraceEventSyntheticDelay* delay = TraceEventSyntheticDelay::Lookup(name);
36 delay->SetClock(this); 36 delay->SetClock(this);
37 delay->SetTargetDuration( 37 delay->SetTargetDuration(
38 base::TimeDelta::FromMilliseconds(kTargetDurationMs)); 38 base::TimeDelta::FromMilliseconds(kTargetDurationMs));
39 return delay; 39 return delay;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 delay->EndParallel(end_times[0]); 147 delay->EndParallel(end_times[0]);
148 EXPECT_GE((Now() - start_time).InMilliseconds(), kTargetDurationMs); 148 EXPECT_GE((Now() - start_time).InMilliseconds(), kTargetDurationMs);
149 149
150 start_time = Now(); 150 start_time = Now();
151 delay->EndParallel(end_times[1]); 151 delay->EndParallel(end_times[1]);
152 EXPECT_LT((Now() - start_time).InMilliseconds(), kShortDurationMs); 152 EXPECT_LT((Now() - start_time).InMilliseconds(), kShortDurationMs);
153 } 153 }
154 154
155 } // namespace debug 155 } // namespace debug
156 } // namespace base 156 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698