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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 // Disables the "search button in omnibox" experiment. | 398 // Disables the "search button in omnibox" experiment. |
399 const char kDisableSearchButtonInOmnibox[] = | 399 const char kDisableSearchButtonInOmnibox[] = |
400 "disable-search-button-in-omnibox"; | 400 "disable-search-button-in-omnibox"; |
401 | 401 |
402 // Disable SPDY/3.1. This is a temporary testing flag. | 402 // Disable SPDY/3.1. This is a temporary testing flag. |
403 const char kDisableSpdy31[] = "disable-spdy31"; | 403 const char kDisableSpdy31[] = "disable-spdy31"; |
404 | 404 |
405 // Disables syncing browser data to a Google Account. | 405 // Disables syncing browser data to a Google Account. |
406 const char kDisableSync[] = "disable-sync"; | 406 const char kDisableSync[] = "disable-sync"; |
407 | 407 |
408 // Disables syncing of the app list independent of extensions. | |
409 const char kDisableSyncAppList[] = "disable-sync-app-list"; | |
410 | |
411 // Disables sync/API based session sync implementation (back to legacy). | 408 // Disables sync/API based session sync implementation (back to legacy). |
412 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; | 409 const char kDisableSyncSessionsV2[] = "disable-sync-sessions-v2"; |
413 | 410 |
414 // Disable synced notifications. | 411 // Disable synced notifications. |
415 const char kDisableSyncSyncedNotifications[] = | 412 const char kDisableSyncSyncedNotifications[] = |
416 "disable-sync-synced-notifications"; | 413 "disable-sync-synced-notifications"; |
417 | 414 |
418 // Disables syncing one or more sync data types that are on by default. | 415 // Disables syncing one or more sync data types that are on by default. |
419 // See sync/internal_api/public/base/model_type.h for possible types. Types | 416 // See sync/internal_api/public/base/model_type.h for possible types. Types |
420 // should be comma separated, and follow the naming convention for string | 417 // should be comma separated, and follow the naming convention for string |
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1533 | 1530 |
1534 // ----------------------------------------------------------------------------- | 1531 // ----------------------------------------------------------------------------- |
1535 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1532 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1536 // | 1533 // |
1537 // You were going to just dump your switches here, weren't you? Instead, please | 1534 // You were going to just dump your switches here, weren't you? Instead, please |
1538 // put them in alphabetical order above, or in order inside the appropriate | 1535 // put them in alphabetical order above, or in order inside the appropriate |
1539 // ifdef at the bottom. The order should match the header. | 1536 // ifdef at the bottom. The order should match the header. |
1540 // ----------------------------------------------------------------------------- | 1537 // ----------------------------------------------------------------------------- |
1541 | 1538 |
1542 } // namespace switches | 1539 } // namespace switches |
OLD | NEW |