| 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 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a | 509 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a |
| 510 // GAIA login page, an info bar can help the user login. | 510 // GAIA login page, an info bar can help the user login. |
| 511 const char kEnableAutologin[] = "enable-autologin"; | 511 const char kEnableAutologin[] = "enable-autologin"; |
| 512 | 512 |
| 513 // Enables the benchmarking extensions. | 513 // Enables the benchmarking extensions. |
| 514 const char kEnableBenchmarking[] = "enable-benchmarking"; | 514 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 515 | 515 |
| 516 // Enables (experimental) more strict popup blocking. | 516 // Enables (experimental) more strict popup blocking. |
| 517 const char kEnableBetterPopupBlocking[] = "enable-better-popup-blocking"; | 517 const char kEnableBetterPopupBlocking[] = "enable-better-popup-blocking"; |
| 518 | 518 |
| 519 // Enables a sync promo that is displayed in the bookmark bubble. |
| 520 const char kEnableBookmarkSyncPromo[] = "enable-bookmark-sync-promo"; |
| 521 |
| 519 // This applies only when the process type is "service". Enables the Cloud | 522 // This applies only when the process type is "service". Enables the Cloud |
| 520 // Print Proxy component within the service process. | 523 // Print Proxy component within the service process. |
| 521 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 524 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| 522 | 525 |
| 523 // Enables fetching and storing cloud policy for components. This currently | 526 // Enables fetching and storing cloud policy for components. This currently |
| 524 // supports policy for extensions on Chrome OS. | 527 // supports policy for extensions on Chrome OS. |
| 525 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 528 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
| 526 | 529 |
| 527 // Enables fetching the user's contacts from Google and showing them in the | 530 // Enables fetching the user's contacts from Google and showing them in the |
| 528 // Chrome OS apps list. | 531 // Chrome OS apps list. |
| (...skipping 1043 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 | 1575 |
| 1573 // ----------------------------------------------------------------------------- | 1576 // ----------------------------------------------------------------------------- |
| 1574 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1577 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1575 // | 1578 // |
| 1576 // You were going to just dump your switches here, weren't you? Instead, please | 1579 // You were going to just dump your switches here, weren't you? Instead, please |
| 1577 // put them in alphabetical order above, or in order inside the appropriate | 1580 // put them in alphabetical order above, or in order inside the appropriate |
| 1578 // ifdef at the bottom. The order should match the header. | 1581 // ifdef at the bottom. The order should match the header. |
| 1579 // ----------------------------------------------------------------------------- | 1582 // ----------------------------------------------------------------------------- |
| 1580 | 1583 |
| 1581 } // namespace switches | 1584 } // namespace switches |
| OLD | NEW |