OLD | NEW |
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 "services/surfaces/surfaces_scheduler.h" | 5 #include "services/surfaces/surfaces_scheduler.h" |
6 | 6 |
7 namespace surfaces { | 7 namespace surfaces { |
8 | 8 |
9 SurfacesScheduler::Client::~Client() { | 9 SurfacesScheduler::Client::~Client() { |
10 } | 10 } |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 return base::TimeDelta(); | 85 return base::TimeDelta(); |
86 } | 86 } |
87 | 87 |
88 void SurfacesScheduler::DidBeginImplFrameDeadline() { | 88 void SurfacesScheduler::DidBeginImplFrameDeadline() { |
89 } | 89 } |
90 | 90 |
91 void SurfacesScheduler::SendBeginFramesToChildren( | 91 void SurfacesScheduler::SendBeginFramesToChildren( |
92 const cc::BeginFrameArgs& args) { | 92 const cc::BeginFrameArgs& args) { |
93 } | 93 } |
94 | 94 |
95 void SurfacesScheduler::SendBeginMainFrameNotExpectedSoon() { | |
96 } | |
97 | |
98 } // namespace mojo | 95 } // namespace mojo |
OLD | NEW |