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

Side by Side Diff: services/surfaces/surfaces_scheduler.cc

Issue 787803004: Update from https://crrev.com/307664 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Rebase. Created 6 years 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
« no previous file with comments | « services/surfaces/surfaces_scheduler.h ('k') | skia/ext/analysis_canvas.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « services/surfaces/surfaces_scheduler.h ('k') | skia/ext/analysis_canvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698