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

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: 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 // service or register proxy for autostart. 201 // service or register proxy for autostart.
202 const char kCloudPrintSetupProxy[] = "cloud-print-setup-proxy"; 202 const char kCloudPrintSetupProxy[] = "cloud-print-setup-proxy";
203 203
204 // The URL of the cloud print service to use, overrides any value stored in 204 // The URL of the cloud print service to use, overrides any value stored in
205 // preferences, and the default. Only used if the cloud print service has been 205 // preferences, and the default. Only used if the cloud print service has been
206 // enabled (see enable-cloud-print). 206 // enabled (see enable-cloud-print).
207 const char kCloudPrintServiceURL[] = "cloud-print-service"; 207 const char kCloudPrintServiceURL[] = "cloud-print-service";
208 208
209 // Comma-separated options to troubleshoot the component updater. Only valid 209 // Comma-separated options to troubleshoot the component updater. Only valid
210 // for the browser process. 210 // for the browser process.
211 const char kComponentUpdaterDebug[] = "component-updater-debug"; 211 const char kComponentUpdater[] = "component-updater";
212 212
213 // Causes the browser process to inspect loaded and registered DLLs for known 213 // Causes the browser process to inspect loaded and registered DLLs for known
214 // conflicts and warn the user. 214 // conflicts and warn the user.
215 const char kConflictingModulesCheck[] = "conflicting-modules-check"; 215 const char kConflictingModulesCheck[] = "conflicting-modules-check";
216 216
217 // Toggles a new version of the content settings dialog in options. 217 // Toggles a new version of the content settings dialog in options.
218 const char kContentSettings2[] = "new-content-settings"; 218 const char kContentSettings2[] = "new-content-settings";
219 219
220 // The Country we should use. This is normally obtained from the operating 220 // The Country we should use. This is normally obtained from the operating
221 // system during first run and cached in the preferences afterwards. This is a 221 // system during first run and cached in the preferences afterwards. This is a
(...skipping 1403 matching lines...) Expand 10 before | Expand all | Expand 10 after
1625 1625
1626 // ----------------------------------------------------------------------------- 1626 // -----------------------------------------------------------------------------
1627 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1627 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1628 // 1628 //
1629 // You were going to just dump your switches here, weren't you? Instead, please 1629 // 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 1630 // put them in alphabetical order above, or in order inside the appropriate
1631 // ifdef at the bottom. The order should match the header. 1631 // ifdef at the bottom. The order should match the header.
1632 // ----------------------------------------------------------------------------- 1632 // -----------------------------------------------------------------------------
1633 1633
1634 } // namespace switches 1634 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698