Index: content/public/common/content_switches.cc |
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc |
index 6dc97dde54ec5e7c8f5eaaec9c0900bf2a43239b..ad0746623031c90d27a02d4438c64d7901143281 100644 |
--- a/content/public/common/content_switches.cc |
+++ b/content/public/common/content_switches.cc |
@@ -86,8 +86,13 @@ const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; |
// Disables device orientation events. |
const char kDisableDeviceOrientation[] = "disable-device-orientation"; |
+#if defined(OS_ANDROID) |
+// WebGL is disabled by default on Android. |
+const char kEnableExperimentalWebGL[] = "enable-webgl"; |
+#else |
// Disable experimental WebGL support. |
const char kDisableExperimentalWebGL[] = "disable-webgl"; |
+#endif |
// Blacklist the GPU for accelerated compositing. |
const char kBlacklistAcceleratedCompositing[] = |