OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "cc/scheduler/vsync_time_source.h" | 5 #include "cc/scheduler/vsync_time_source.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 namespace cc { | 9 namespace cc { |
10 | 10 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 notification_requested_ = false; | 67 notification_requested_ = false; |
68 vsync_provider_->RequestVSyncNotification(NULL); | 68 vsync_provider_->RequestVSyncNotification(NULL); |
69 } | 69 } |
70 return; | 70 return; |
71 } | 71 } |
72 if (client_) | 72 if (client_) |
73 client_->OnTimerTick(); | 73 client_->OnTimerTick(); |
74 } | 74 } |
75 | 75 |
76 } // namespace cc | 76 } // namespace cc |
OLD | NEW |