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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 // app/extension ID given, and then prompt the user to download and install it. | 752 // app/extension ID given, and then prompt the user to download and install it. |
753 const char kInstallFromWebstore[] = "install-from-webstore"; | 753 const char kInstallFromWebstore[] = "install-from-webstore"; |
754 | 754 |
755 // Marks a renderer as an Instant process. | 755 // Marks a renderer as an Instant process. |
756 const char kInstantProcess[] = "instant-process"; | 756 const char kInstantProcess[] = "instant-process"; |
757 | 757 |
758 // Invalidation service should use GCM network channel even if experiment is not | 758 // Invalidation service should use GCM network channel even if experiment is not |
759 // enabled. | 759 // enabled. |
760 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; | 760 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; |
761 | 761 |
| 762 // Enables experimental Harmony (ECMAScript 6) features. |
| 763 const char kJavaScriptHarmony[] = "javascript-harmony"; |
| 764 |
762 // Specifies the testcase used by the IPC fuzzer. | 765 // Specifies the testcase used by the IPC fuzzer. |
763 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 766 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
764 | 767 |
765 // Used for testing - keeps browser alive after last browser window closes. | 768 // Used for testing - keeps browser alive after last browser window closes. |
766 const char kKeepAliveForTest[] = "keep-alive-for-test"; | 769 const char kKeepAliveForTest[] = "keep-alive-for-test"; |
767 | 770 |
768 // Enable Kiosk mode. | 771 // Enable Kiosk mode. |
769 const char kKioskMode[] = "kiosk"; | 772 const char kKioskMode[] = "kiosk"; |
770 | 773 |
771 // Print automatically in kiosk mode. |kKioskMode| must be set as well. | 774 // Print automatically in kiosk mode. |kKioskMode| must be set as well. |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1342 | 1345 |
1343 // ----------------------------------------------------------------------------- | 1346 // ----------------------------------------------------------------------------- |
1344 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1347 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1345 // | 1348 // |
1346 // You were going to just dump your switches here, weren't you? Instead, please | 1349 // You were going to just dump your switches here, weren't you? Instead, please |
1347 // put them in alphabetical order above, or in order inside the appropriate | 1350 // put them in alphabetical order above, or in order inside the appropriate |
1348 // ifdef at the bottom. The order should match the header. | 1351 // ifdef at the bottom. The order should match the header. |
1349 // ----------------------------------------------------------------------------- | 1352 // ----------------------------------------------------------------------------- |
1350 | 1353 |
1351 } // namespace switches | 1354 } // namespace switches |
OLD | NEW |