| 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 1297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1308 const char kShowIcons[] = "show-icons"; | 1308 const char kShowIcons[] = "show-icons"; |
| 1309 | 1309 |
| 1310 // Marks a renderer as the signin process. | 1310 // Marks a renderer as the signin process. |
| 1311 const char kSigninProcess[] = "signin-process"; | 1311 const char kSigninProcess[] = "signin-process"; |
| 1312 | 1312 |
| 1313 // Does not show an infobar when an extension attaches to a page using | 1313 // Does not show an infobar when an extension attaches to a page using |
| 1314 // chrome.debugger page. Required to attach to extension background pages. | 1314 // chrome.debugger page. Required to attach to extension background pages. |
| 1315 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; | 1315 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; |
| 1316 | 1316 |
| 1317 // Changes the DCHECKS to dump memory and continue instead of displaying error | 1317 // Changes the DCHECKS to dump memory and continue instead of displaying error |
| 1318 // dialog. This is valid only in Release mode when --enable-dcheck is | 1318 // dialog. This is valid only in Release mode when gyp dcheck_always_on=1. |
| 1319 // specified. | |
| 1320 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; | 1319 const char kSilentDumpOnDCHECK[] = "silent-dump-on-dcheck"; |
| 1321 | 1320 |
| 1322 // Causes Chrome to launch without opening any windows by default. Useful if | 1321 // Causes Chrome to launch without opening any windows by default. Useful if |
| 1323 // one wishes to use Chrome as an ash server. | 1322 // one wishes to use Chrome as an ash server. |
| 1324 const char kSilentLaunch[] = "silent-launch"; | 1323 const char kSilentLaunch[] = "silent-launch"; |
| 1325 | 1324 |
| 1326 // Simulates an update being available. | 1325 // Simulates an update being available. |
| 1327 const char kSimulateUpgrade[] = "simulate-upgrade"; | 1326 const char kSimulateUpgrade[] = "simulate-upgrade"; |
| 1328 | 1327 |
| 1329 // Simulates a critical update being available. | 1328 // Simulates a critical update being available. |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1643 | 1642 |
| 1644 // ----------------------------------------------------------------------------- | 1643 // ----------------------------------------------------------------------------- |
| 1645 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1644 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1646 // | 1645 // |
| 1647 // You were going to just dump your switches here, weren't you? Instead, please | 1646 // You were going to just dump your switches here, weren't you? Instead, please |
| 1648 // put them in alphabetical order above, or in order inside the appropriate | 1647 // put them in alphabetical order above, or in order inside the appropriate |
| 1649 // ifdef at the bottom. The order should match the header. | 1648 // ifdef at the bottom. The order should match the header. |
| 1650 // ----------------------------------------------------------------------------- | 1649 // ----------------------------------------------------------------------------- |
| 1651 | 1650 |
| 1652 } // namespace switches | 1651 } // namespace switches |
| OLD | NEW |