Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 15908002: Differential updates for components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: really removing the lzma files this time. Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 const char kEnableBenchmarking[] = "enable-benchmarking"; 503 const char kEnableBenchmarking[] = "enable-benchmarking";
504 504
505 // This applies only when the process type is "service". Enables the Cloud 505 // This applies only when the process type is "service". Enables the Cloud
506 // Print Proxy component within the service process. 506 // Print Proxy component within the service process.
507 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; 507 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
508 508
509 // Enables fetching and storing cloud policy for components. This currently 509 // Enables fetching and storing cloud policy for components. This currently
510 // supports policy for extensions on Chrome OS. 510 // supports policy for extensions on Chrome OS.
511 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy"; 511 const char kEnableComponentCloudPolicy[] = "enable-component-cloud-policy";
512 512
513 // Enables differential updates for Chrome components, provided that the update
514 // server can provide them. Only valid on the browser process.
515 const char kEnableComponentUpdateDeltas[] = "enable-component-update-deltas";
516
517 // Enables "pings", requests sent to the update server that report the success
518 // or failure of component installation attempts. Only valid on the browser
519 // process.
520 const char kEnableComponentUpdatePings[] = "enable-component-update-pings";
521
513 // Enables fetching the user's contacts from Google and showing them in the 522 // Enables fetching the user's contacts from Google and showing them in the
514 // Chrome OS apps list. 523 // Chrome OS apps list.
515 const char kEnableContacts[] = "enable-contacts"; 524 const char kEnableContacts[] = "enable-contacts";
516 525
517 // Enables desktop guest mode. 526 // Enables desktop guest mode.
518 const char kEnableDesktopGuestMode[] = "enable-desktop-guest-mode"; 527 const char kEnableDesktopGuestMode[] = "enable-desktop-guest-mode";
519 528
520 // Enables device discovery. 529 // Enables device discovery.
521 const char kEnableDeviceDiscovery[] = "enable-device-discovery"; 530 const char kEnableDeviceDiscovery[] = "enable-device-discovery";
522 531
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1607 1616
1608 // ----------------------------------------------------------------------------- 1617 // -----------------------------------------------------------------------------
1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1618 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1610 // 1619 //
1611 // You were going to just dump your switches here, weren't you? Instead, please 1620 // You were going to just dump your switches here, weren't you? Instead, please
1612 // put them in alphabetical order above, or in order inside the appropriate 1621 // put them in alphabetical order above, or in order inside the appropriate
1613 // ifdef at the bottom. The order should match the header. 1622 // ifdef at the bottom. The order should match the header.
1614 // ----------------------------------------------------------------------------- 1623 // -----------------------------------------------------------------------------
1615 1624
1616 } // namespace switches 1625 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698