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 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 const char kEnableBenchmarking[] = "enable-benchmarking"; | 496 const char kEnableBenchmarking[] = "enable-benchmarking"; |
497 | 497 |
498 // This applies only when the process type is "service". Enables the Cloud | 498 // This applies only when the process type is "service". Enables the Cloud |
499 // Print Proxy component within the service process. | 499 // Print Proxy component within the service process. |
500 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 500 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
501 | 501 |
502 // Enables fetching and storing cloud policy for components. This currently | 502 // Enables fetching and storing cloud policy for components. This currently |
503 // supports policy for extensions on Chrome OS. | 503 // supports policy for extensions on Chrome OS. |
504 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; | 504 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; |
505 | 505 |
| 506 // Enables differential updates for Chrome components, provided that the update |
| 507 // server can provide them. Only valid on the browser process. |
| 508 const char kEnableComponentUpdateDeltas[] = "enable-component-update-deltas"; |
| 509 |
| 510 // Enables "pings", requests sent to the update server that report the success |
| 511 // or failure of component installation attempts. Only valid on the browser |
| 512 // process. |
| 513 const char kEnableComponentUpdatePings[] = "enable-component-update-pings"; |
| 514 |
506 // Enables fetching the user's contacts from Google and showing them in the | 515 // Enables fetching the user's contacts from Google and showing them in the |
507 // Chrome OS apps list. | 516 // Chrome OS apps list. |
508 const char kEnableContacts[] = "enable-contacts"; | 517 const char kEnableContacts[] = "enable-contacts"; |
509 | 518 |
510 // Enables desktop guest mode. | 519 // Enables desktop guest mode. |
511 const char kEnableDesktopGuestMode[] = "enable-desktop-guest-mode"; | 520 const char kEnableDesktopGuestMode[] = "enable-desktop-guest-mode"; |
512 | 521 |
513 // If true devtools experimental settings are enabled. | 522 // If true devtools experimental settings are enabled. |
514 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; | 523 const char kEnableDevToolsExperiments[] = "enable-devtools-experiments"; |
515 | 524 |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1593 | 1602 |
1594 // ----------------------------------------------------------------------------- | 1603 // ----------------------------------------------------------------------------- |
1595 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1604 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1596 // | 1605 // |
1597 // You were going to just dump your switches here, weren't you? Instead, please | 1606 // You were going to just dump your switches here, weren't you? Instead, please |
1598 // put them in alphabetical order above, or in order inside the appropriate | 1607 // put them in alphabetical order above, or in order inside the appropriate |
1599 // ifdef at the bottom. The order should match the header. | 1608 // ifdef at the bottom. The order should match the header. |
1600 // ----------------------------------------------------------------------------- | 1609 // ----------------------------------------------------------------------------- |
1601 | 1610 |
1602 } // namespace switches | 1611 } // namespace switches |
OLD | NEW |