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

Unified Diff: content/public/common/content_switches.cc

Issue 10790066: Enable gesture events handling on Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit fix to render_widget_host_view_android Created 8 years, 5 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 | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index e5533c9d2f91280e94dbb8491f035e11f8671636..45a793679ff18508114d43bb2936c62cd24b3197 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -242,6 +242,9 @@ const char kDomAutomationController[] = "dom-automation";
// Enable hardware accelerated page painting.
const char kEnableAcceleratedPainting[] = "enable-accelerated-painting";
+// Enables the hardware acceleration of plugins.
+const char kEnableAcceleratedPlugins[] = "enable-accelerated-plugins";
+
// Enable gpu-accelerated SVG/W3C filters.
const char kEnableAcceleratedFilters[] = "enable-accelerated-filters";
@@ -648,6 +651,12 @@ const char kEnableVisualWordMovement[] = "enable-visual-word-movement";
#if defined(OS_ANDROID)
// Set when Chromium should use a mobile user agent.
const char kUseMobileUserAgent[] = "use-mobile-user-agent";
+// Omnibus flag setting an Android graphics mode. May be:
+// "basic" (untiled software path)
+// "compositor" (hardware-accelerated compositing),
+const char kGraphicsMode[] = "graphics-mode";
+const char kGraphicsModeValueBasic[] = "basic";
+const char kGraphicsModeValueCompositor[] = "compositor";
#endif
#if defined(OS_POSIX) && !defined(OS_MACOSX)
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698