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

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

Issue 48113021: Expose WebGL extension WEBGL_debug_renderer_info to Google domains (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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
Index: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index 97ac38cc5ee13bbe3e4c46233f2cb21cef1ecff3..81ec7466c8fbc4bacad4bcd4b2d118673d72c31f 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -306,6 +306,10 @@ const char kDisableUniversalAcceleratedOverflowScroll[] =
// Disable web audio API.
const char kDisableWebAudio[] = "disable-webaudio";
+// Don't expose WEBGL_debug_renderer_info extension.
+const char kDisableWebGLDebugRendererInfo[] =
+ "disable-webgl-debug-renderer-info";
+
// Disables prefixed Media Source API (i.e., the WebKitMediaSource object).
const char kDisableWebKitMediaSource[] = "disable-webkit-media-source";
@@ -566,6 +570,10 @@ const char kEnableWebAnimationsCSS[] = "enable-web-animations-css";
// Enable SVG Animations on the Web Animations model.
const char kEnableWebAnimationsSVG[] = "enable-web-animations-svg";
+// Expose WEBGL_debug_renderer_info extension.
+const char kEnableWebGLDebugRendererInfo[] =
+ "enable-webgl-debug-renderer-info";
+
// Enables WebGL extensions not yet approved by the community.
const char kEnableWebGLDraftExtensions[] = "enable-webgl-draft-extensions";

Powered by Google App Engine
This is Rietveld 408576698