OLD | NEW |
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 Loading... |
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 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1626 | 1626 |
1627 // ----------------------------------------------------------------------------- | 1627 // ----------------------------------------------------------------------------- |
1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1629 // | 1629 // |
1630 // You were going to just dump your switches here, weren't you? Instead, please | 1630 // You were going to just dump your switches here, weren't you? Instead, please |
1631 // put them in alphabetical order above, or in order inside the appropriate | 1631 // put them in alphabetical order above, or in order inside the appropriate |
1632 // ifdef at the bottom. The order should match the header. | 1632 // ifdef at the bottom. The order should match the header. |
1633 // ----------------------------------------------------------------------------- | 1633 // ----------------------------------------------------------------------------- |
1634 | 1634 |
1635 } // namespace switches | 1635 } // namespace switches |
OLD | NEW |