| 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 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 // Causes the browser to launch directly in incognito mode. | 768 // Causes the browser to launch directly in incognito mode. |
| 769 const char kIncognito[] = "incognito"; | 769 const char kIncognito[] = "incognito"; |
| 770 | 770 |
| 771 // Causes Chrome to initiate an installation flow for the given app. | 771 // Causes Chrome to initiate an installation flow for the given app. |
| 772 const char kInstallChromeApp[] = "install-chrome-app"; | 772 const char kInstallChromeApp[] = "install-chrome-app"; |
| 773 | 773 |
| 774 // Causes Chrome to attempt to get metadata from the webstore for the | 774 // Causes Chrome to attempt to get metadata from the webstore for the |
| 775 // app/extension ID given, and then prompt the user to download and install it. | 775 // app/extension ID given, and then prompt the user to download and install it. |
| 776 const char kInstallFromWebstore[] = "install-from-webstore"; | 776 const char kInstallFromWebstore[] = "install-from-webstore"; |
| 777 | 777 |
| 778 // Tries to install recovery component with elevated privilege without opening |
| 779 // any window. |
| 780 const char kInstallRecoveryComponent[] = "install-recovery-component"; |
| 781 |
| 778 // Marks a renderer as an Instant process. | 782 // Marks a renderer as an Instant process. |
| 779 const char kInstantProcess[] = "instant-process"; | 783 const char kInstantProcess[] = "instant-process"; |
| 780 | 784 |
| 781 // Invalidation service should use GCM network channel even if experiment is not | 785 // Invalidation service should use GCM network channel even if experiment is not |
| 782 // enabled. | 786 // enabled. |
| 783 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; | 787 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; |
| 784 | 788 |
| 785 // Specifies the testcase used by the IPC fuzzer. | 789 // Specifies the testcase used by the IPC fuzzer. |
| 786 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 790 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 787 | 791 |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 | 1404 |
| 1401 // ----------------------------------------------------------------------------- | 1405 // ----------------------------------------------------------------------------- |
| 1402 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1406 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1403 // | 1407 // |
| 1404 // You were going to just dump your switches here, weren't you? Instead, please | 1408 // You were going to just dump your switches here, weren't you? Instead, please |
| 1405 // put them in alphabetical order above, or in order inside the appropriate | 1409 // put them in alphabetical order above, or in order inside the appropriate |
| 1406 // ifdef at the bottom. The order should match the header. | 1410 // ifdef at the bottom. The order should match the header. |
| 1407 // ----------------------------------------------------------------------------- | 1411 // ----------------------------------------------------------------------------- |
| 1408 | 1412 |
| 1409 } // namespace switches | 1413 } // namespace switches |
| OLD | NEW |