OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
133 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; | 133 const char kCloudPrintJobTitle[] = "cloud-print-job-title"; |
134 | 134 |
135 // The unique id to be used for this cloud print proxy instance. | 135 // The unique id to be used for this cloud print proxy instance. |
136 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; | 136 const char kCloudPrintProxyId[] = "cloud-print-proxy-id"; |
137 | 137 |
138 // The URL of the cloud print service to use, overrides any value | 138 // The URL of the cloud print service to use, overrides any value |
139 // stored in preferences, and the default. Only used if the cloud | 139 // stored in preferences, and the default. Only used if the cloud |
140 // print service has been enabled (see enable-cloud-print). | 140 // print service has been enabled (see enable-cloud-print). |
141 const char kCloudPrintServiceURL[] = "cloud-print-service"; | 141 const char kCloudPrintServiceURL[] = "cloud-print-service"; |
142 | 142 |
143 // Comma-separated options to troubleshoot the component updater. | |
144 // Only valid for the browser process. | |
asargent_no_longer_on_chrome
2011/08/02 23:57:07
nit: If you think we'll have this flag long-term,
cpu_(ooo_6.6-7.5)
2011/08/03 20:17:15
ok
| |
145 const char kComponentUpdaterDebug[] = "component-updater-debug"; | |
146 | |
143 // Causes the browser process to inspect loaded and registered DLLs for | 147 // Causes the browser process to inspect loaded and registered DLLs for |
144 // known conflicts and warn the user. | 148 // known conflicts and warn the user. |
145 const char kConflictingModulesCheck[] = "conflicting-modules-check"; | 149 const char kConflictingModulesCheck[] = "conflicting-modules-check"; |
146 | 150 |
147 // The Country we should use. This is normally obtained from the operating | 151 // The Country we should use. This is normally obtained from the operating |
148 // system during first run and cached in the preferences afterwards. This is a | 152 // system during first run and cached in the preferences afterwards. This is a |
149 // string value, the 2 letter code from ISO 3166-1. | 153 // string value, the 2 letter code from ISO 3166-1. |
150 const char kCountry[] = "country"; | 154 const char kCountry[] = "country"; |
151 | 155 |
152 // Causes the browser process to crash if browser threads are not responding for | 156 // Causes the browser process to crash if browser threads are not responding for |
(...skipping 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1235 | 1239 |
1236 // ----------------------------------------------------------------------------- | 1240 // ----------------------------------------------------------------------------- |
1237 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1241 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1238 // | 1242 // |
1239 // You were going to just dump your switches here, weren't you? Instead, | 1243 // You were going to just dump your switches here, weren't you? Instead, |
1240 // please put them in alphabetical order above, or in order inside the | 1244 // please put them in alphabetical order above, or in order inside the |
1241 // appropriate ifdef at the bottom. The order should match the header. | 1245 // appropriate ifdef at the bottom. The order should match the header. |
1242 // ----------------------------------------------------------------------------- | 1246 // ----------------------------------------------------------------------------- |
1243 | 1247 |
1244 } // namespace switches | 1248 } // namespace switches |
OLD | NEW |