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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 6215001: Revert 70548 - Reverse flag for kDisableExperimentalWebGL... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/597s/src/
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/sandbox_init_wrapper_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 9
10 namespace switches { 10 namespace switches {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 190
191 // Disables desktop notifications (default enabled on windows). 191 // Disables desktop notifications (default enabled on windows).
192 const char kDisableDesktopNotifications[] = "disable-desktop-notifications"; 192 const char kDisableDesktopNotifications[] = "disable-desktop-notifications";
193 193
194 // Browser flag to disable the web inspector for all renderers. 194 // Browser flag to disable the web inspector for all renderers.
195 const char kDisableDevTools[] = "disable-dev-tools"; 195 const char kDisableDevTools[] = "disable-dev-tools";
196 196
197 // Disables device orientation events. 197 // Disables device orientation events.
198 const char kDisableDeviceOrientation[] = "disable-device-orientation"; 198 const char kDisableDeviceOrientation[] = "disable-device-orientation";
199 199
200 // Disable experimental WebGL support.
201 const char kDisableExperimentalWebGL[] = "disable-webgl";
202
200 // Disable extensions. 203 // Disable extensions.
201 const char kDisableExtensions[] = "disable-extensions"; 204 const char kDisableExtensions[] = "disable-extensions";
202 205
203 // Disable checking for user opt-in for extensions that want to inject script 206 // Disable checking for user opt-in for extensions that want to inject script
204 // into file URLs (ie, always allow it). This is used during automated testing. 207 // into file URLs (ie, always allow it). This is used during automated testing.
205 const char kDisableExtensionsFileAccessCheck[] = 208 const char kDisableExtensionsFileAccessCheck[] =
206 "disable-extensions-file-access-check"; 209 "disable-extensions-file-access-check";
207 210
208 // Disable FileSystem API. 211 // Disable FileSystem API.
209 const char kDisableFileSystem[] = "disable-file-system"; 212 const char kDisableFileSystem[] = "disable-file-system";
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 // be used by developers at the current time. 459 // be used by developers at the current time.
457 const char kEnableDNSCertProvenanceChecking[] = 460 const char kEnableDNSCertProvenanceChecking[] =
458 "enable-dns-cert-provenance-checking"; 461 "enable-dns-cert-provenance-checking";
459 462
460 const char kEnableDNSSECCerts[] = "enable-dnssec-certs"; 463 const char kEnableDNSSECCerts[] = "enable-dnssec-certs";
461 464
462 // Enables extension APIs that are in development. 465 // Enables extension APIs that are in development.
463 const char kEnableExperimentalExtensionApis[] = 466 const char kEnableExperimentalExtensionApis[] =
464 "enable-experimental-extension-apis"; 467 "enable-experimental-extension-apis";
465 468
466 // Enable experimental WebGL support.
467 const char kEnableExperimentalWebGL[] = "enable-webgl";
468
469 // Enable experimental timeline API. 469 // Enable experimental timeline API.
470 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; 470 const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api";
471 471
472 // Enable the fastback page cache. 472 // Enable the fastback page cache.
473 const char kEnableFastback[] = "enable-fastback"; 473 const char kEnableFastback[] = "enable-fastback";
474 474
475 // By default, cookies are not allowed on file://. They are needed for 475 // By default, cookies are not allowed on file://. They are needed for
476 // testing, for example page cycler and layout tests. See bug 1157243. 476 // testing, for example page cycler and layout tests. See bug 1157243.
477 const char kEnableFileCookies[] = "enable-file-cookies"; 477 const char kEnableFileCookies[] = "enable-file-cookies";
478 478
(...skipping 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
1363 1363
1364 // ----------------------------------------------------------------------------- 1364 // -----------------------------------------------------------------------------
1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1365 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1366 // 1366 //
1367 // You were going to just dump your switches here, weren't you? Instead, 1367 // You were going to just dump your switches here, weren't you? Instead,
1368 // please put them in alphabetical order above, or in order inside the 1368 // please put them in alphabetical order above, or in order inside the
1369 // appropriate ifdef at the bottom. The order should match the header. 1369 // appropriate ifdef at the bottom. The order should match the header.
1370 // ----------------------------------------------------------------------------- 1370 // -----------------------------------------------------------------------------
1371 1371
1372 } // namespace switches 1372 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/sandbox_init_wrapper_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698