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

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

Issue 4524002: First cut of the about:conflicts page, listing all DLLs loaded in the Chrome ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 const char kChromeFrame[] = "chrome-frame"; 93 const char kChromeFrame[] = "chrome-frame";
94 94
95 // The unique id to be used for this cloud print proxy instance. 95 // The unique id to be used for this cloud print proxy instance.
96 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; 96 const char kCloudPrintProxyId[] = "cloud-print-proxy-id";
97 97
98 // The URL of the cloud print service to use, overrides any value 98 // The URL of the cloud print service to use, overrides any value
99 // stored in preferences, and the default. Only used if the cloud 99 // stored in preferences, and the default. Only used if the cloud
100 // print service has been enabled (see enable-cloud-print). 100 // print service has been enabled (see enable-cloud-print).
101 const char kCloudPrintServiceURL[] = "cloud-print-service"; 101 const char kCloudPrintServiceURL[] = "cloud-print-service";
102 102
103 // Causes the browser process to inspect loaded and registered DLLs for
104 // known conflicts and warn the user.
105 const char kConflictingModulesCheck[] = "conflicting-modules-check";
106
103 // The Country we should use. This is normally obtained from the operating 107 // The Country we should use. This is normally obtained from the operating
104 // system during first run and cached in the preferences afterwards. This is a 108 // system during first run and cached in the preferences afterwards. This is a
105 // string value, the 2 letter code from ISO 3166-1. 109 // string value, the 2 letter code from ISO 3166-1.
106 const char kCountry[] = "country"; 110 const char kCountry[] = "country";
107 111
108 // Enables support to debug printing subsystem. 112 // Enables support to debug printing subsystem.
109 const char kDebugPrint[] = "debug-print"; 113 const char kDebugPrint[] = "debug-print";
110 114
111 // Triggers a pletora of diagnostic modes. 115 // Triggers a pletora of diagnostic modes.
112 const char kDiagnostics[] = "diagnostics"; 116 const char kDiagnostics[] = "diagnostics";
(...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1268 1272
1269 // ----------------------------------------------------------------------------- 1273 // -----------------------------------------------------------------------------
1270 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1274 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1271 // 1275 //
1272 // You were going to just dump your switches here, weren't you? Instead, 1276 // You were going to just dump your switches here, weren't you? Instead,
1273 // please put them in alphabetical order above, or in order inside the 1277 // please put them in alphabetical order above, or in order inside the
1274 // appropriate ifdef at the bottom. The order should match the header. 1278 // appropriate ifdef at the bottom. The order should match the header.
1275 // ----------------------------------------------------------------------------- 1279 // -----------------------------------------------------------------------------
1276 1280
1277 } // namespace switches 1281 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698