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

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: Created 5 years, 6 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 (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() {
12 now_ticks_ += TimeDelta::FromMicroseconds(1);
13 }
12 14
13 SimpleTestTickClock::~SimpleTestTickClock() {} 15 SimpleTestTickClock::~SimpleTestTickClock() {}
14 16
15 TimeTicks SimpleTestTickClock::NowTicks() { 17 TimeTicks SimpleTestTickClock::NowTicks() {
16 AutoLock lock(lock_); 18 AutoLock lock(lock_);
17 return now_ticks_; 19 return now_ticks_;
18 } 20 }
19 21
20 void SimpleTestTickClock::Advance(TimeDelta delta) { 22 void SimpleTestTickClock::Advance(TimeDelta delta) {
21 AutoLock lock(lock_); 23 AutoLock lock(lock_);
22 DCHECK(delta >= TimeDelta()); 24 DCHECK(delta >= TimeDelta());
23 now_ticks_ += delta; 25 now_ticks_ += delta;
24 } 26 }
25 27
26 } // namespace base 28 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | cc/scheduler/begin_frame_source_unittest.cc » ('j') | cc/scheduler/begin_frame_source_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698