OLD | NEW |
---|---|
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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
232 // into file URLs (ie, always allow it). This is used during automated testing. | 232 // into file URLs (ie, always allow it). This is used during automated testing. |
233 const char kDisableExtensionsFileAccessCheck[] = | 233 const char kDisableExtensionsFileAccessCheck[] = |
234 "disable-extensions-file-access-check"; | 234 "disable-extensions-file-access-check"; |
235 | 235 |
236 // Disable FileSystem API. | 236 // Disable FileSystem API. |
237 const char kDisableFileSystem[] = "disable-file-system"; | 237 const char kDisableFileSystem[] = "disable-file-system"; |
238 | 238 |
239 // Disables the sandbox for the built-in flash player. | 239 // Disables the sandbox for the built-in flash player. |
240 const char kDisableFlashSandbox[] = "disable-flash-sandbox"; | 240 const char kDisableFlashSandbox[] = "disable-flash-sandbox"; |
241 | 241 |
242 // Disables HTML5 Forms interactive validation. | |
243 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.
| |
244 "disable-interactive-form-validation"; | |
245 | |
242 // Suppresses support for the Geolocation javascript API. | 246 // Suppresses support for the Geolocation javascript API. |
243 const char kDisableGeolocation[] = "disable-geolocation"; | 247 const char kDisableGeolocation[] = "disable-geolocation"; |
244 | 248 |
245 // Disable the GLSL translator. | 249 // Disable the GLSL translator. |
246 const char kDisableGLSLTranslator[] = "disable-glsl-translator"; | 250 const char kDisableGLSLTranslator[] = "disable-glsl-translator"; |
247 | 251 |
248 // Disable the thread that crashes the GPU process if it stops responding to | 252 // Disable the thread that crashes the GPU process if it stops responding to |
249 // messages. | 253 // messages. |
250 const char kDisableGpuWatchdog[] = "disable-gpu-watchdog"; | 254 const char kDisableGpuWatchdog[] = "disable-gpu-watchdog"; |
251 | 255 |
(...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1383 | 1387 |
1384 // ----------------------------------------------------------------------------- | 1388 // ----------------------------------------------------------------------------- |
1385 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1386 // | 1390 // |
1387 // You were going to just dump your switches here, weren't you? Instead, | 1391 // You were going to just dump your switches here, weren't you? Instead, |
1388 // please put them in alphabetical order above, or in order inside the | 1392 // please put them in alphabetical order above, or in order inside the |
1389 // appropriate ifdef at the bottom. The order should match the header. | 1393 // appropriate ifdef at the bottom. The order should match the header. |
1390 // ----------------------------------------------------------------------------- | 1394 // ----------------------------------------------------------------------------- |
1391 | 1395 |
1392 } // namespace switches | 1396 } // namespace switches |
OLD | NEW |