| 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 1202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1213 // Makes component extensions appear in chrome://settings/extensions. | 1213 // Makes component extensions appear in chrome://settings/extensions. |
| 1214 const char kShowComponentExtensionOptions[] = | 1214 const char kShowComponentExtensionOptions[] = |
| 1215 "show-component-extension-options"; | 1215 "show-component-extension-options"; |
| 1216 | 1216 |
| 1217 // See kHideIcons. | 1217 // See kHideIcons. |
| 1218 const char kShowIcons[] = "show-icons"; | 1218 const char kShowIcons[] = "show-icons"; |
| 1219 | 1219 |
| 1220 // If true the alignment of the launcher can be changed. | 1220 // If true the alignment of the launcher can be changed. |
| 1221 const char kShowLauncherAlignmentMenu[] = "show-launcher-alignment-menu"; | 1221 const char kShowLauncherAlignmentMenu[] = "show-launcher-alignment-menu"; |
| 1222 | 1222 |
| 1223 // Marks a renderer as the signin process. |
| 1224 const char kSigninProcess[] = "signin-process"; |
| 1225 |
| 1223 // Enables or disables sideload wipeout extension effort. | 1226 // Enables or disables sideload wipeout extension effort. |
| 1224 const char kSideloadWipeout[] = "sideload-wipeout"; | 1227 const char kSideloadWipeout[] = "sideload-wipeout"; |
| 1225 | 1228 |
| 1226 // Changes the DCHECKS to dump memory and continue instead of displaying error | 1229 // Changes the DCHECKS to dump memory and continue instead of displaying error |
| 1227 // dialog. This is valid only in Release mode when --enable-dcheck is | 1230 // dialog. This is valid only in Release mode when --enable-dcheck is |
| 1228 // specified. | 1231 // specified. |
| 1229 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 1232 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
| 1230 | 1233 |
| 1231 // Causes Chrome to launch without opening any windows by default. Useful if | 1234 // Causes Chrome to launch without opening any windows by default. Useful if |
| 1232 // one wishes to use Chrome as an ash server. | 1235 // one wishes to use Chrome as an ash server. |
| (...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 | 1673 |
| 1671 // ----------------------------------------------------------------------------- | 1674 // ----------------------------------------------------------------------------- |
| 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1675 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1673 // | 1676 // |
| 1674 // You were going to just dump your switches here, weren't you? Instead, please | 1677 // You were going to just dump your switches here, weren't you? Instead, please |
| 1675 // put them in alphabetical order above, or in order inside the appropriate | 1678 // put them in alphabetical order above, or in order inside the appropriate |
| 1676 // ifdef at the bottom. The order should match the header. | 1679 // ifdef at the bottom. The order should match the header. |
| 1677 // ----------------------------------------------------------------------------- | 1680 // ----------------------------------------------------------------------------- |
| 1678 | 1681 |
| 1679 } // namespace switches | 1682 } // namespace switches |
| OLD | NEW |