| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 | 308 |
| 309 // Disables SSL v3 (usually for testing purposes). | 309 // Disables SSL v3 (usually for testing purposes). |
| 310 const char kDisableSSL3[] = "disable-ssl3"; | 310 const char kDisableSSL3[] = "disable-ssl3"; |
| 311 | 311 |
| 312 // Disables syncing browser data to a Google Account. | 312 // Disables syncing browser data to a Google Account. |
| 313 const char kDisableSync[] = "disable-sync"; | 313 const char kDisableSync[] = "disable-sync"; |
| 314 | 314 |
| 315 // Disables syncing of apps. | 315 // Disables syncing of apps. |
| 316 const char kDisableSyncApps[] = "disable-sync-apps"; | 316 const char kDisableSyncApps[] = "disable-sync-apps"; |
| 317 | 317 |
| 318 // Disable syncing app notifications. |
| 319 const char kDisableSyncAppNotifications[] = "disable-sync-app-notifications"; |
| 320 |
| 318 // Disables syncing of autofill. | 321 // Disables syncing of autofill. |
| 319 const char kDisableSyncAutofill[] = "disable-sync-autofill"; | 322 const char kDisableSyncAutofill[] = "disable-sync-autofill"; |
| 320 | 323 |
| 321 // Disables syncing of autofill Profile. | 324 // Disables syncing of autofill Profile. |
| 322 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; | 325 const char kDisableSyncAutofillProfile[] = "disable-sync-autofill-profile"; |
| 323 | 326 |
| 324 // Disables syncing of bookmarks. | 327 // Disables syncing of bookmarks. |
| 325 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; | 328 const char kDisableSyncBookmarks[] = "disable-sync-bookmarks"; |
| 326 | 329 |
| 327 // Disables sync encryption options. | 330 // Disables sync encryption options. |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 // Enables OAuth sign-in for sync. | 552 // Enables OAuth sign-in for sync. |
| 550 const char kEnableSyncOAuth[] = "enable-sync-oauth"; | 553 const char kEnableSyncOAuth[] = "enable-sync-oauth"; |
| 551 | 554 |
| 552 // Enables syncing browser sessions. | 555 // Enables syncing browser sessions. |
| 553 const char kEnableSyncTabs[] = "enable-sync-tabs"; | 556 const char kEnableSyncTabs[] = "enable-sync-tabs"; |
| 554 | 557 |
| 555 // Enables syncing browser sessions for other synced clients. | 558 // Enables syncing browser sessions for other synced clients. |
| 556 const char kEnableSyncTabsForOtherClients[] = | 559 const char kEnableSyncTabsForOtherClients[] = |
| 557 "enable-sync-tabs-for-other-clients"; | 560 "enable-sync-tabs-for-other-clients"; |
| 558 | 561 |
| 559 // Enable syncing app notifications. | |
| 560 const char kEnableSyncAppNotifications[] = "enable-sync-app-notifications"; | |
| 561 | |
| 562 // Enables context menu for selecting groups of tabs. | 562 // Enables context menu for selecting groups of tabs. |
| 563 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; | 563 const char kEnableTabGroupsContextMenu[] = "enable-tab-groups-context-menu"; |
| 564 | 564 |
| 565 // Enables the "synced bookmarks" folder. | 565 // Enables the "synced bookmarks" folder. |
| 566 const char kEnableSyncedBookmarksFolder[] = "enable-synced-bookmarks-folder"; | 566 const char kEnableSyncedBookmarksFolder[] = "enable-synced-bookmarks-folder"; |
| 567 | 567 |
| 568 // Spawns threads to watch for excessive delays in specified message loops. | 568 // Spawns threads to watch for excessive delays in specified message loops. |
| 569 // User should set breakpoints on Alarm() to examine problematic thread. | 569 // User should set breakpoints on Alarm() to examine problematic thread. |
| 570 // | 570 // |
| 571 // Usage: -enable-watchdog=[ui][io] | 571 // Usage: -enable-watchdog=[ui][io] |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1296 | 1296 |
| 1297 // ----------------------------------------------------------------------------- | 1297 // ----------------------------------------------------------------------------- |
| 1298 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1298 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1299 // | 1299 // |
| 1300 // You were going to just dump your switches here, weren't you? Instead, please | 1300 // You were going to just dump your switches here, weren't you? Instead, please |
| 1301 // put them in alphabetical order above, or in order inside the appropriate | 1301 // put them in alphabetical order above, or in order inside the appropriate |
| 1302 // ifdef at the bottom. The order should match the header. | 1302 // ifdef at the bottom. The order should match the header. |
| 1303 // ----------------------------------------------------------------------------- | 1303 // ----------------------------------------------------------------------------- |
| 1304 | 1304 |
| 1305 } // namespace switches | 1305 } // namespace switches |
| OLD | NEW |