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