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

Side by Side Diff: cc/scheduler/scheduler.h

Issue 1394263004: android webview: allow cc to fail hardware draw (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: damage before hardware to avoid invalidate-draw loop Created 5 years, 2 months 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 | « cc/output/output_surface.h ('k') | cc/scheduler/scheduler.cc » ('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 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 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 #ifndef CC_SCHEDULER_SCHEDULER_H_ 5 #ifndef CC_SCHEDULER_SCHEDULER_H_
6 #define CC_SCHEDULER_SCHEDULER_H_ 6 #define CC_SCHEDULER_SCHEDULER_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <string> 9 #include <string>
10 10
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 void OnDrawForOutputSurface(); 70 void OnDrawForOutputSurface();
71 71
72 const SchedulerSettings& settings() const { return settings_; } 72 const SchedulerSettings& settings() const { return settings_; }
73 73
74 void CommitVSyncParameters(base::TimeTicks timebase, 74 void CommitVSyncParameters(base::TimeTicks timebase,
75 base::TimeDelta interval); 75 base::TimeDelta interval);
76 void SetEstimatedParentDrawTime(base::TimeDelta draw_time); 76 void SetEstimatedParentDrawTime(base::TimeDelta draw_time);
77 77
78 void SetVisible(bool visible); 78 void SetVisible(bool visible);
79 bool visible() { return state_machine_.visible(); } 79 bool visible() { return state_machine_.visible(); }
80 void SetResourcelessSoftareDraw(bool resourceless_draw);
80 void SetCanDraw(bool can_draw); 81 void SetCanDraw(bool can_draw);
81 void NotifyReadyToActivate(); 82 void NotifyReadyToActivate();
82 void NotifyReadyToDraw(); 83 void NotifyReadyToDraw();
83 void SetThrottleFrameProduction(bool throttle); 84 void SetThrottleFrameProduction(bool throttle);
84 85
85 void SetNeedsBeginMainFrame(); 86 void SetNeedsBeginMainFrame();
86 87
87 void SetNeedsRedraw(); 88 void SetNeedsRedraw();
88 89
89 void SetNeedsAnimate(); 90 void SetNeedsAnimate();
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 } 222 }
222 223
223 base::WeakPtrFactory<Scheduler> weak_factory_; 224 base::WeakPtrFactory<Scheduler> weak_factory_;
224 225
225 DISALLOW_COPY_AND_ASSIGN(Scheduler); 226 DISALLOW_COPY_AND_ASSIGN(Scheduler);
226 }; 227 };
227 228
228 } // namespace cc 229 } // namespace cc
229 230
230 #endif // CC_SCHEDULER_SCHEDULER_H_ 231 #endif // CC_SCHEDULER_SCHEDULER_H_
OLDNEW
« no previous file with comments | « cc/output/output_surface.h ('k') | cc/scheduler/scheduler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698