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

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

Issue 6329005: * Add WebPreference::interactive_form_validation_enabled... (Closed) Base URL: svn://chrome-svn/chrome/trunk/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
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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 #pragma once 9 #pragma once
10 10
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 extern const char kDisableDatabases[]; 69 extern const char kDisableDatabases[];
70 extern const char kDisableDesktopNotifications[]; 70 extern const char kDisableDesktopNotifications[];
71 extern const char kDisableDevTools[]; 71 extern const char kDisableDevTools[];
72 extern const char kDisableDeviceOrientation[]; 72 extern const char kDisableDeviceOrientation[];
73 extern const char kDisableEnforcedThrottling[]; 73 extern const char kDisableEnforcedThrottling[];
74 extern const char kDisableExperimentalWebGL[]; 74 extern const char kDisableExperimentalWebGL[];
75 extern const char kDisableExtensionsFileAccessCheck[]; 75 extern const char kDisableExtensionsFileAccessCheck[];
76 extern const char kDisableExtensions[]; 76 extern const char kDisableExtensions[];
77 extern const char kDisableFileSystem[]; 77 extern const char kDisableFileSystem[];
78 extern const char kDisableFlashSandbox[]; 78 extern const char kDisableFlashSandbox[];
79 extern const char kDisableInteractiveFormValidation[];
darin (slow to review) 2011/01/19 23:34:31 nit: please insert in sorted order
tkent 2011/01/20 01:40:34 Fixed. I initially named it kDisableFormInteract
79 extern const char kDisableGLSLTranslator[]; 80 extern const char kDisableGLSLTranslator[];
80 extern const char kDisableGeolocation[]; 81 extern const char kDisableGeolocation[];
81 extern const char kDisableGpuWatchdog[]; 82 extern const char kDisableGpuWatchdog[];
82 extern const char kDisableHangMonitor[]; 83 extern const char kDisableHangMonitor[];
83 extern const char kDisableHistoryQuickProvider[]; 84 extern const char kDisableHistoryQuickProvider[];
84 extern const char kDisableHistoryURLProvider[]; 85 extern const char kDisableHistoryURLProvider[];
85 extern const char kDisableInternalFlash[]; 86 extern const char kDisableInternalFlash[];
86 extern const char kDisableIndexedDatabase[]; 87 extern const char kDisableIndexedDatabase[];
87 extern const char kDisableIPv6[]; 88 extern const char kDisableIPv6[];
88 extern const char kDisableJavaScript[]; 89 extern const char kDisableJavaScript[];
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 412
412 // Return true if the switches indicate the seccomp sandbox is enabled. 413 // Return true if the switches indicate the seccomp sandbox is enabled.
413 bool SeccompSandboxEnabled(); 414 bool SeccompSandboxEnabled();
414 415
415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 416 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
416 // alphabetical order, or in one of the ifdefs (also in order in each section). 417 // alphabetical order, or in one of the ifdefs (also in order in each section).
417 418
418 } // namespace switches 419 } // namespace switches
419 420
420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 421 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698