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

Side by Side Diff: base/test/simple_test_tick_clock.cc

Issue 1178423008: Provision to start base::SimpleTestTickClock at initial ticks Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 11 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
« no previous file with comments | « base/test/simple_test_tick_clock.h ('k') | cc/scheduler/begin_frame_source_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/test/simple_test_tick_clock.h" 5 #include "base/test/simple_test_tick_clock.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace base { 9 namespace base {
10 10
11 SimpleTestTickClock::SimpleTestTickClock() {} 11 SimpleTestTickClock::SimpleTestTickClock(TimeTicks initial)
12 : now_ticks_(initial) {}
12 13
13 SimpleTestTickClock::~SimpleTestTickClock() {} 14 SimpleTestTickClock::~SimpleTestTickClock() {}
14 15
15 TimeTicks SimpleTestTickClock::NowTicks() { 16 TimeTicks SimpleTestTickClock::NowTicks() {
16 AutoLock lock(lock_); 17 AutoLock lock(lock_);
17 return now_ticks_; 18 return now_ticks_;
18 } 19 }
19 20
20 void SimpleTestTickClock::Advance(TimeDelta delta) { 21 void SimpleTestTickClock::Advance(TimeDelta delta) {
21 AutoLock lock(lock_); 22 AutoLock lock(lock_);
22 DCHECK(delta >= TimeDelta()); 23 DCHECK(delta >= TimeDelta());
23 now_ticks_ += delta; 24 now_ticks_ += delta;
24 } 25 }
25 26
26 } // namespace base 27 } // namespace base
OLDNEW
« no previous file with comments | « base/test/simple_test_tick_clock.h ('k') | cc/scheduler/begin_frame_source_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698