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

Unified Diff: cc/output_surface.h

Issue 12540003: CrOS: Set max frames pending for UI from command line. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | cc/thread_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output_surface.h
diff --git a/cc/output_surface.h b/cc/output_surface.h
index 69b99140f2007c1a01813c6ba868dbbea13cfcfa..f128dc2d226a2ac18deb5651f96e9badb1d8f8ae 100644
--- a/cc/output_surface.h
+++ b/cc/output_surface.h
@@ -44,9 +44,11 @@ class CC_EXPORT OutputSurface : public WebKit::WebCompositorOutputSurface {
struct Capabilities {
Capabilities()
- : has_parent_compositor(false) {}
+ : has_parent_compositor(false),
+ max_frames_pending(0) {}
bool has_parent_compositor;
+ int max_frames_pending;
};
const Capabilities& capabilities() const {
« no previous file with comments | « no previous file | cc/thread_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698