| 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 "enable-password-autofill-public-suffix-domain-matching"; | 498 "enable-password-autofill-public-suffix-domain-matching"; |
| 499 | 499 |
| 500 // Enables the pre- and auto-login features. When a user signs in to sync, the | 500 // Enables the pre- and auto-login features. When a user signs in to sync, the |
| 501 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 501 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 502 // GAIA login page, an info bar can help the user login. | 502 // GAIA login page, an info bar can help the user login. |
| 503 const char kEnableAutologin[] = "enable-autologin"; | 503 const char kEnableAutologin[] = "enable-autologin"; |
| 504 | 504 |
| 505 // Enables the benchmarking extensions. | 505 // Enables the benchmarking extensions. |
| 506 const char kEnableBenchmarking[] = "enable-benchmarking"; | 506 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 507 | 507 |
| 508 // Enables a sync promo that is displayed in the bookmark bubble. |
| 509 const char kEnableBookmarkSyncPromo[] = "enable-bookmark-sync-promo"; |
| 510 |
| 508 // This applies only when the process type is "service". Enables the Cloud | 511 // This applies only when the process type is "service". Enables the Cloud |
| 509 // Print Proxy component within the service process. | 512 // Print Proxy component within the service process. |
| 510 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 513 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| 511 | 514 |
| 512 // Enables fetching and storing cloud policy for components. This currently | 515 // Enables fetching and storing cloud policy for components. This currently |
| 513 // supports policy for extensions on Chrome OS. | 516 // supports policy for extensions on Chrome OS. |
| 514 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 517 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
| 515 | 518 |
| 516 // Enables fetching the user's contacts from Google and showing them in the | 519 // Enables fetching the user's contacts from Google and showing them in the |
| 517 // Chrome OS apps list. | 520 // Chrome OS apps list. |
| (...skipping 1071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 | 1592 |
| 1590 // ----------------------------------------------------------------------------- | 1593 // ----------------------------------------------------------------------------- |
| 1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1594 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1592 // | 1595 // |
| 1593 // You were going to just dump your switches here, weren't you? Instead, please | 1596 // You were going to just dump your switches here, weren't you? Instead, please |
| 1594 // put them in alphabetical order above, or in order inside the appropriate | 1597 // put them in alphabetical order above, or in order inside the appropriate |
| 1595 // ifdef at the bottom. The order should match the header. | 1598 // ifdef at the bottom. The order should match the header. |
| 1596 // ----------------------------------------------------------------------------- | 1599 // ----------------------------------------------------------------------------- |
| 1597 | 1600 |
| 1598 } // namespace switches | 1601 } // namespace switches |
| OLD | NEW |