| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 const char kEnableBenchmarking[] = "enable-benchmarking"; | 507 const char kEnableBenchmarking[] = "enable-benchmarking"; |
| 508 | 508 |
| 509 // This applies only when the process type is "service". Enables the Cloud | 509 // This applies only when the process type is "service". Enables the Cloud |
| 510 // Print Proxy component within the service process. | 510 // Print Proxy component within the service process. |
| 511 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 511 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
| 512 | 512 |
| 513 // Enables fetching and storing cloud policy for components. This currently | 513 // Enables fetching and storing cloud policy for components. This currently |
| 514 // supports policy for extensions on Chrome OS. | 514 // supports policy for extensions on Chrome OS. |
| 515 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 515 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
| 516 | 516 |
| 517 // Enables differential updates for Chrome components, provided that the update |
| 518 // server can provide them. Only valid on the browser process. |
| 519 const char kEnableComponentUpdateDeltas[] = "enable-component-update-deltas"; |
| 520 |
| 521 // Enables "pings", requests sent to the update server that report the success |
| 522 // or failure of component installation attempts. Only valid on the browser |
| 523 // process. |
| 524 const char kEnableComponentUpdatePings[] = "enable-component-update-pings"; |
| 525 |
| 517 // Enables fetching the user's contacts from Google and showing them in the | 526 // Enables fetching the user's contacts from Google and showing them in the |
| 518 // Chrome OS apps list. | 527 // Chrome OS apps list. |
| 519 const char kEnableContacts[] = "enable-contacts"; | 528 const char kEnableContacts[] = "enable-contacts"; |
| 520 | 529 |
| 521 // Enables desktop guest mode. | 530 // Enables desktop guest mode. |
| 522 const char kEnableDesktopGuestMode[] = "enable-desktop-guest-mode"; | 531 const char kEnableDesktopGuestMode[] = "enable-desktop-guest-mode"; |
| 523 | 532 |
| 524 // Enables device discovery. | 533 // Enables device discovery. |
| 525 const char kEnableDeviceDiscovery[] = "enable-device-discovery"; | 534 const char kEnableDeviceDiscovery[] = "enable-device-discovery"; |
| 526 | 535 |
| (...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 | 1634 |
| 1626 // ----------------------------------------------------------------------------- | 1635 // ----------------------------------------------------------------------------- |
| 1627 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1636 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1628 // | 1637 // |
| 1629 // You were going to just dump your switches here, weren't you? Instead, please | 1638 // You were going to just dump your switches here, weren't you? Instead, please |
| 1630 // put them in alphabetical order above, or in order inside the appropriate | 1639 // put them in alphabetical order above, or in order inside the appropriate |
| 1631 // ifdef at the bottom. The order should match the header. | 1640 // ifdef at the bottom. The order should match the header. |
| 1632 // ----------------------------------------------------------------------------- | 1641 // ----------------------------------------------------------------------------- |
| 1633 | 1642 |
| 1634 } // namespace switches | 1643 } // namespace switches |
| OLD | NEW |