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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
777 // Launches URL in new browser window. | 777 // Launches URL in new browser window. |
778 const char kOpenInNewWindow[] = "new-window"; | 778 const char kOpenInNewWindow[] = "new-window"; |
779 | 779 |
780 // Force use of QUIC for requests to the specified origin. | 780 // Force use of QUIC for requests to the specified origin. |
781 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; | 781 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; |
782 | 782 |
783 // The time that a new chrome process which is delegating to an already running | 783 // The time that a new chrome process which is delegating to an already running |
784 // chrome process started. (See ProcessSingleton for more details.) | 784 // chrome process started. (See ProcessSingleton for more details.) |
785 const char kOriginalProcessStartTime[] = "original-process-start-time"; | 785 const char kOriginalProcessStartTime[] = "original-process-start-time"; |
786 | 786 |
| 787 // Overrides the default public key for checking origin trial tokens. |
| 788 const char kOriginTrialPublicKey[] = "origin-trial-public-key"; |
| 789 |
787 // Packages an extension to a .crx installable file from a given directory. | 790 // Packages an extension to a .crx installable file from a given directory. |
788 const char kPackExtension[] = "pack-extension"; | 791 const char kPackExtension[] = "pack-extension"; |
789 | 792 |
790 // Optional PEM private key to use in signing packaged .crx. | 793 // Optional PEM private key to use in signing packaged .crx. |
791 const char kPackExtensionKey[] = "pack-extension-key"; | 794 const char kPackExtensionKey[] = "pack-extension-key"; |
792 | 795 |
793 // Specifies the path to the user data folder for the parent profile. | 796 // Specifies the path to the user data folder for the parent profile. |
794 const char kParentProfile[] = "parent-profile"; | 797 const char kParentProfile[] = "parent-profile"; |
795 | 798 |
796 // Development flag for permission request API. This flag is needed until | 799 // Development flag for permission request API. This flag is needed until |
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1386 | 1389 |
1387 // ----------------------------------------------------------------------------- | 1390 // ----------------------------------------------------------------------------- |
1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1389 // | 1392 // |
1390 // You were going to just dump your switches here, weren't you? Instead, please | 1393 // You were going to just dump your switches here, weren't you? Instead, please |
1391 // put them in alphabetical order above, or in order inside the appropriate | 1394 // put them in alphabetical order above, or in order inside the appropriate |
1392 // ifdef at the bottom. The order should match the header. | 1395 // ifdef at the bottom. The order should match the header. |
1393 // ----------------------------------------------------------------------------- | 1396 // ----------------------------------------------------------------------------- |
1394 | 1397 |
1395 } // namespace switches | 1398 } // namespace switches |
OLD | NEW |