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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 // Disable syncing of preferences. | 338 // Disable syncing of preferences. |
339 const char kDisableSyncPreferences[] = "disable-sync-preferences"; | 339 const char kDisableSyncPreferences[] = "disable-sync-preferences"; |
340 | 340 |
341 // Disable syncing of themes. | 341 // Disable syncing of themes. |
342 const char kDisableSyncThemes[] = "disable-sync-themes"; | 342 const char kDisableSyncThemes[] = "disable-sync-themes"; |
343 | 343 |
344 // Enable the new autofill type. | 344 // Enable the new autofill type. |
345 const char kEnableSyncNewAutofill[] = | 345 const char kEnableSyncNewAutofill[] = |
346 "enable-sync-new-autofill-data-type"; | 346 "enable-sync-new-autofill-data-type"; |
347 | 347 |
| 348 // Disable tabbed options, i.e., DOMUI version of options window. |
| 349 const char kDisableTabbedOptions[] = "disable-tabbed-options"; |
| 350 |
348 // TabCloseableStateWatcher disallows closing of tabs and browsers under certain | 351 // TabCloseableStateWatcher disallows closing of tabs and browsers under certain |
349 // situations on ChromeOS. Some tests expect tabs or browsers to close, so we | 352 // situations on ChromeOS. Some tests expect tabs or browsers to close, so we |
350 // need a switch to disable the watcher. | 353 // need a switch to disable the watcher. |
351 const char kDisableTabCloseableStateWatcher[] = | 354 const char kDisableTabCloseableStateWatcher[] = |
352 "disable-tab-closeable-state-watcher"; | 355 "disable-tab-closeable-state-watcher"; |
353 | 356 |
354 // Allow disabling of translate from the command line to assist with | 357 // Allow disabling of translate from the command line to assist with |
355 // automated browser testing (e.g. Selenium/WebDriver). Normal | 358 // automated browser testing (e.g. Selenium/WebDriver). Normal |
356 // browser users should disable translate with the preference. | 359 // browser users should disable translate with the preference. |
357 const char kDisableTranslate[] = "disable-translate"; | 360 const char kDisableTranslate[] = "disable-translate"; |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
558 | 561 |
559 // Enable syncing browser passwords. | 562 // Enable syncing browser passwords. |
560 const char kEnableSyncPasswords[] = "enable-sync-passwords"; | 563 const char kEnableSyncPasswords[] = "enable-sync-passwords"; |
561 | 564 |
562 // Enable syncing browser sessions. | 565 // Enable syncing browser sessions. |
563 const char kEnableSyncSessions[] = "enable-sync-sessions"; | 566 const char kEnableSyncSessions[] = "enable-sync-sessions"; |
564 | 567 |
565 // Enable syncing browser typed urls. | 568 // Enable syncing browser typed urls. |
566 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; | 569 const char kEnableSyncTypedUrls[] = "enable-sync-typed-urls"; |
567 | 570 |
568 // Enable tabbed options, ie: dom-ui version of options window. | |
569 const char kEnableTabbedOptions[] = "enable-tabbed-options"; | |
570 | |
571 // Enable use of experimental TCP sockets API for sending data in the | 571 // Enable use of experimental TCP sockets API for sending data in the |
572 // SYN packet. | 572 // SYN packet. |
573 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 573 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
574 | 574 |
575 // Enables TopSites. | 575 // Enables TopSites. |
576 const char kEnableTopSites[] = "enable-top-sites"; | 576 const char kEnableTopSites[] = "enable-top-sites"; |
577 | 577 |
578 // Whether or not the touch events API is exposed. | 578 // Whether or not the touch events API is exposed. |
579 const char kEnableTouch[] = "enable-touch"; | 579 const char kEnableTouch[] = "enable-touch"; |
580 | 580 |
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1367 | 1367 |
1368 // ----------------------------------------------------------------------------- | 1368 // ----------------------------------------------------------------------------- |
1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1369 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1370 // | 1370 // |
1371 // You were going to just dump your switches here, weren't you? Instead, | 1371 // You were going to just dump your switches here, weren't you? Instead, |
1372 // please put them in alphabetical order above, or in order inside the | 1372 // please put them in alphabetical order above, or in order inside the |
1373 // appropriate ifdef at the bottom. The order should match the header. | 1373 // appropriate ifdef at the bottom. The order should match the header. |
1374 // ----------------------------------------------------------------------------- | 1374 // ----------------------------------------------------------------------------- |
1375 | 1375 |
1376 } // namespace switches | 1376 } // namespace switches |
OLD | NEW |