| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "config.h" | |
| 6 | |
| 7 #include "cc/test/scheduler_test_common.h" | 5 #include "cc/test/scheduler_test_common.h" |
| 8 | 6 |
| 9 #include "base/logging.h" | 7 #include "base/logging.h" |
| 10 | 8 |
| 11 namespace WebKitTests { | 9 namespace WebKitTests { |
| 12 | 10 |
| 13 void FakeTimeSourceClient::onTimerTick() | 11 void FakeTimeSourceClient::onTimerTick() |
| 14 { | 12 { |
| 15 m_tickCalled = true; | 13 m_tickCalled = true; |
| 16 } | 14 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 { | 73 { |
| 76 return base::TimeTicks(); | 74 return base::TimeTicks(); |
| 77 } | 75 } |
| 78 | 76 |
| 79 base::TimeTicks FakeDelayBasedTimeSource::now() const | 77 base::TimeTicks FakeDelayBasedTimeSource::now() const |
| 80 { | 78 { |
| 81 return m_now; | 79 return m_now; |
| 82 } | 80 } |
| 83 | 81 |
| 84 } | 82 } |
| OLD | NEW |