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 665 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] | 676 // The list is of the following form: <id>[:<name>],[<id>[:<name>],...] |
677 const char kInstallSupervisedUserWhitelists[] = | 677 const char kInstallSupervisedUserWhitelists[] = |
678 "install-supervised-user-whitelists"; | 678 "install-supervised-user-whitelists"; |
679 | 679 |
680 // Marks a renderer as an Instant process. | 680 // Marks a renderer as an Instant process. |
681 const char kInstantProcess[] = "instant-process"; | 681 const char kInstantProcess[] = "instant-process"; |
682 | 682 |
683 // The URL for the interests API. | 683 // The URL for the interests API. |
684 const char kInterestsURL[] = "interests-url"; | 684 const char kInterestsURL[] = "interests-url"; |
685 | 685 |
686 // Invalidation service should use GCM network channel even if experiment is not | |
687 // enabled. | |
688 const char kInvalidationUseGCMChannel[] = "invalidation-use-gcm-channel"; | |
689 | |
690 // Enables site isolation for all chrome-extension:// urls. | 686 // Enables site isolation for all chrome-extension:// urls. |
691 const char kIsolateExtensions[] = "isolate-extensions"; | 687 const char kIsolateExtensions[] = "isolate-extensions"; |
692 | 688 |
693 // Disable latest shipping ECMAScript 6 features. | 689 // Disable latest shipping ECMAScript 6 features. |
694 const char kDisableJavaScriptHarmonyShipping[] = | 690 const char kDisableJavaScriptHarmonyShipping[] = |
695 "disable-javascript-harmony-shipping"; | 691 "disable-javascript-harmony-shipping"; |
696 | 692 |
697 // Enables experimental Harmony (ECMAScript 6) features. | 693 // Enables experimental Harmony (ECMAScript 6) features. |
698 const char kJavaScriptHarmony[] = "javascript-harmony"; | 694 const char kJavaScriptHarmony[] = "javascript-harmony"; |
699 | 695 |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1401 | 1397 |
1402 // ----------------------------------------------------------------------------- | 1398 // ----------------------------------------------------------------------------- |
1403 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1399 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1404 // | 1400 // |
1405 // You were going to just dump your switches here, weren't you? Instead, please | 1401 // You were going to just dump your switches here, weren't you? Instead, please |
1406 // put them in alphabetical order above, or in order inside the appropriate | 1402 // put them in alphabetical order above, or in order inside the appropriate |
1407 // ifdef at the bottom. The order should match the header. | 1403 // ifdef at the bottom. The order should match the header. |
1408 // ----------------------------------------------------------------------------- | 1404 // ----------------------------------------------------------------------------- |
1409 | 1405 |
1410 } // namespace switches | 1406 } // namespace switches |
OLD | NEW |