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