OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 "disable-tab-closeable-state-watcher"; | 403 "disable-tab-closeable-state-watcher"; |
404 | 404 |
405 // Disables TLS v1.0 (usually for testing purposes). | 405 // Disables TLS v1.0 (usually for testing purposes). |
406 const char kDisableTLS1[] = "disable-tls1"; | 406 const char kDisableTLS1[] = "disable-tls1"; |
407 | 407 |
408 // Allows disabling of translate from the command line to assist with automated | 408 // Allows disabling of translate from the command line to assist with automated |
409 // browser testing (e.g. Selenium/WebDriver). Normal browser users should | 409 // browser testing (e.g. Selenium/WebDriver). Normal browser users should |
410 // disable translate with the preference. | 410 // disable translate with the preference. |
411 const char kDisableTranslate[] = "disable-translate"; | 411 const char kDisableTranslate[] = "disable-translate"; |
412 | 412 |
413 // Disable uber page command and URL redirection. | |
414 const char kDisableUberPage[] = "disable-uber-page"; | |
415 | |
416 // Disables the backend service for web resources. | 413 // Disables the backend service for web resources. |
417 const char kDisableWebResources[] = "disable-web-resources"; | 414 const char kDisableWebResources[] = "disable-web-resources"; |
418 | 415 |
419 // Some tests seem to require the application to close when the last | 416 // Some tests seem to require the application to close when the last |
420 // browser window is closed. Thus, we need a switch to force this behavior | 417 // browser window is closed. Thus, we need a switch to force this behavior |
421 // for ChromeOS Aura, disable "zero window mode". | 418 // for ChromeOS Aura, disable "zero window mode". |
422 // TODO(pkotwicz): Investigate if this bug can be removed. | 419 // TODO(pkotwicz): Investigate if this bug can be removed. |
423 // (http://crbug.com/119175) | 420 // (http://crbug.com/119175) |
424 extern const char kDisableZeroBrowsersOpenForTests[] = | 421 extern const char kDisableZeroBrowsersOpenForTests[] = |
425 "disable-zero-browsers-open-for-tests"; | 422 "disable-zero-browsers-open-for-tests"; |
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1373 | 1370 |
1374 // ----------------------------------------------------------------------------- | 1371 // ----------------------------------------------------------------------------- |
1375 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1372 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1376 // | 1373 // |
1377 // You were going to just dump your switches here, weren't you? Instead, please | 1374 // You were going to just dump your switches here, weren't you? Instead, please |
1378 // put them in alphabetical order above, or in order inside the appropriate | 1375 // put them in alphabetical order above, or in order inside the appropriate |
1379 // ifdef at the bottom. The order should match the header. | 1376 // ifdef at the bottom. The order should match the header. |
1380 // ----------------------------------------------------------------------------- | 1377 // ----------------------------------------------------------------------------- |
1381 | 1378 |
1382 } // namespace switches | 1379 } // namespace switches |
OLD | NEW |