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

Unified Diff: cc/CCSettings.cpp

Issue 10916279: Chromium compositor change implementing page-scale driven pinch-zoom. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Rebaselined to 160422. Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/CCSettings.h ('k') | cc/CCThreadProxy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCSettings.cpp
===================================================================
--- cc/CCSettings.cpp (revision 160422)
+++ cc/CCSettings.cpp (working copy)
@@ -12,6 +12,7 @@
static bool s_perTilePaintingEnabled = false;
static bool s_partialSwapEnabled = false;
static bool s_acceleratedAnimationEnabled = false;
+static bool s_pageScalePinchZoomEnabled = false;
} // namespace
namespace cc {
@@ -25,6 +26,9 @@
bool CCSettings::acceleratedAnimationEnabled() { return s_acceleratedAnimationEnabled; }
void CCSettings::setAcceleratedAnimationEnabled(bool enabled) { s_acceleratedAnimationEnabled = enabled; }
+bool CCSettings::pageScalePinchZoomEnabled() { return s_pageScalePinchZoomEnabled; }
+void CCSettings::setPageScalePinchZoomEnabled(bool enabled) { s_pageScalePinchZoomEnabled = enabled; }
+
bool CCSettings::jankInsteadOfCheckerboard()
{
return CommandLine::ForCurrentProcess()->HasSwitch(switches::kJankInsteadOfCheckerboard);
@@ -40,6 +44,7 @@
s_perTilePaintingEnabled = false;
s_partialSwapEnabled = false;
s_acceleratedAnimationEnabled = false;
+ s_pageScalePinchZoomEnabled = false;
}
} // namespace cc
« no previous file with comments | « cc/CCSettings.h ('k') | cc/CCThreadProxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698