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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 const char kDisableScriptedPrintThrottling[] = | 366 const char kDisableScriptedPrintThrottling[] = |
367 "disable-scripted-print-throttling"; | 367 "disable-scripted-print-throttling"; |
368 | 368 |
369 // Disables the "search button in omnibox" experiment. | 369 // Disables the "search button in omnibox" experiment. |
370 const char kDisableSearchButtonInOmnibox[] = | 370 const char kDisableSearchButtonInOmnibox[] = |
371 "disable-search-button-in-omnibox"; | 371 "disable-search-button-in-omnibox"; |
372 | 372 |
373 // Disable SPDY/3.1. This is a temporary testing flag. | 373 // Disable SPDY/3.1. This is a temporary testing flag. |
374 const char kDisableSpdy31[] = "disable-spdy31"; | 374 const char kDisableSpdy31[] = "disable-spdy31"; |
375 | 375 |
| 376 // Disables the suggestions service. |
| 377 const char kDisableSuggestionsService[] = "disable-suggestions-service"; |
| 378 |
376 // Disables syncing browser data to a Google Account. | 379 // Disables syncing browser data to a Google Account. |
377 const char kDisableSync[] = "disable-sync"; | 380 const char kDisableSync[] = "disable-sync"; |
378 | 381 |
379 // Disable synced notifications. | 382 // Disable synced notifications. |
380 const char kDisableSyncSyncedNotifications[] = | 383 const char kDisableSyncSyncedNotifications[] = |
381 "disable-sync-synced-notifications"; | 384 "disable-sync-synced-notifications"; |
382 | 385 |
383 // Disables syncing one or more sync data types that are on by default. | 386 // Disables syncing one or more sync data types that are on by default. |
384 // See sync/internal_api/public/base/model_type.h for possible types. Types | 387 // See sync/internal_api/public/base/model_type.h for possible types. Types |
385 // should be comma separated, and follow the naming convention for string | 388 // should be comma separated, and follow the naming convention for string |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 // service. | 636 // service. |
634 const char kEnableSpellingFeedbackFieldTrial[] = | 637 const char kEnableSpellingFeedbackFieldTrial[] = |
635 "enable-spelling-feedback-field-trial"; | 638 "enable-spelling-feedback-field-trial"; |
636 | 639 |
637 // Enables the stacked tabstrip. | 640 // Enables the stacked tabstrip. |
638 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; | 641 const char kEnableStackedTabStrip[] = "enable-stacked-tab-strip"; |
639 | 642 |
640 // Enables an experimental hosted app experience. | 643 // Enables an experimental hosted app experience. |
641 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; | 644 const char kEnableStreamlinedHostedApps[] = "enable-streamlined-hosted-apps"; |
642 | 645 |
| 646 // Enables the suggestions service. |
| 647 const char kEnableSuggestionsService[] = "enable-suggestions-service"; |
| 648 |
643 // Enables synced notifications. | 649 // Enables synced notifications. |
644 const char kEnableSyncSyncedNotifications[] = | 650 const char kEnableSyncSyncedNotifications[] = |
645 "enable-sync-synced-notifications"; | 651 "enable-sync-synced-notifications"; |
646 | 652 |
647 // Enables synced articles. | 653 // Enables synced articles. |
648 const char kEnableSyncArticles[] = "enable-sync-articles"; | 654 const char kEnableSyncArticles[] = "enable-sync-articles"; |
649 | 655 |
650 // Enables fanciful thumbnail processing. Used with NTP for | 656 // Enables fanciful thumbnail processing. Used with NTP for |
651 // instant-extended-api, where thumbnails are generally smaller. | 657 // instant-extended-api, where thumbnails are generally smaller. |
652 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; | 658 const char kEnableThumbnailRetargeting[] = "enable-thumbnail-retargeting"; |
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1438 | 1444 |
1439 // ----------------------------------------------------------------------------- | 1445 // ----------------------------------------------------------------------------- |
1440 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1446 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1441 // | 1447 // |
1442 // You were going to just dump your switches here, weren't you? Instead, please | 1448 // You were going to just dump your switches here, weren't you? Instead, please |
1443 // put them in alphabetical order above, or in order inside the appropriate | 1449 // put them in alphabetical order above, or in order inside the appropriate |
1444 // ifdef at the bottom. The order should match the header. | 1450 // ifdef at the bottom. The order should match the header. |
1445 // ----------------------------------------------------------------------------- | 1451 // ----------------------------------------------------------------------------- |
1446 | 1452 |
1447 } // namespace switches | 1453 } // namespace switches |
OLD | NEW |