| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 void SurfacesScheduler::ScheduledActionCommit() { | 57 void SurfacesScheduler::ScheduledActionCommit() { |
| 58 } | 58 } |
| 59 | 59 |
| 60 void SurfacesScheduler::ScheduledActionActivateSyncTree() { | 60 void SurfacesScheduler::ScheduledActionActivateSyncTree() { |
| 61 } | 61 } |
| 62 | 62 |
| 63 void SurfacesScheduler::ScheduledActionBeginOutputSurfaceCreation() { | 63 void SurfacesScheduler::ScheduledActionBeginOutputSurfaceCreation() { |
| 64 scheduler_->DidCreateAndInitializeOutputSurface(); | 64 scheduler_->DidCreateAndInitializeOutputSurface(); |
| 65 } | 65 } |
| 66 | 66 |
| 67 void SurfacesScheduler::ScheduledActionManageTiles() { | 67 void SurfacesScheduler::ScheduledActionPrepareTiles() { |
| 68 } | 68 } |
| 69 | 69 |
| 70 void SurfacesScheduler::DidAnticipatedDrawTimeChange(base::TimeTicks time) { | 70 void SurfacesScheduler::DidAnticipatedDrawTimeChange(base::TimeTicks time) { |
| 71 } | 71 } |
| 72 | 72 |
| 73 base::TimeDelta SurfacesScheduler::DrawDurationEstimate() { | 73 base::TimeDelta SurfacesScheduler::DrawDurationEstimate() { |
| 74 return draw_estimate_; | 74 return draw_estimate_; |
| 75 } | 75 } |
| 76 | 76 |
| 77 base::TimeDelta SurfacesScheduler::BeginMainFrameToCommitDurationEstimate() { | 77 base::TimeDelta SurfacesScheduler::BeginMainFrameToCommitDurationEstimate() { |
| 78 return base::TimeDelta(); | 78 return base::TimeDelta(); |
| 79 } | 79 } |
| 80 | 80 |
| 81 base::TimeDelta SurfacesScheduler::CommitToActivateDurationEstimate() { | 81 base::TimeDelta SurfacesScheduler::CommitToActivateDurationEstimate() { |
| 82 return base::TimeDelta(); | 82 return base::TimeDelta(); |
| 83 } | 83 } |
| 84 | 84 |
| 85 void SurfacesScheduler::DidBeginImplFrameDeadline() { | 85 void SurfacesScheduler::DidBeginImplFrameDeadline() { |
| 86 } | 86 } |
| 87 | 87 |
| 88 void SurfacesScheduler::SendBeginFramesToChildren( | 88 void SurfacesScheduler::SendBeginFramesToChildren( |
| 89 const cc::BeginFrameArgs& args) { | 89 const cc::BeginFrameArgs& args) { |
| 90 } | 90 } |
| 91 | 91 |
| 92 } // namespace mojo | 92 } // namespace mojo |
| OLD | NEW |