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 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
769 // Launches URL in new browser window. | 769 // Launches URL in new browser window. |
770 const char kOpenInNewWindow[] = "new-window"; | 770 const char kOpenInNewWindow[] = "new-window"; |
771 | 771 |
772 // Specifies a comma separated list of host/port pairs to force use of QUIC. | 772 // Specifies a comma separated list of host/port pairs to force use of QUIC. |
773 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; | 773 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; |
774 | 774 |
775 // The time that a new chrome process which is delegating to an already running | 775 // The time that a new chrome process which is delegating to an already running |
776 // chrome process started. (See ProcessSingleton for more details.) | 776 // chrome process started. (See ProcessSingleton for more details.) |
777 const char kOriginalProcessStartTime[] = "original-process-start-time"; | 777 const char kOriginalProcessStartTime[] = "original-process-start-time"; |
778 | 778 |
| 779 // Overrides the default public key for checking origin trial tokens. |
| 780 const char kOriginTrialPublicKey[] = "origin-trial-public-key"; |
| 781 |
779 // Packages an extension to a .crx installable file from a given directory. | 782 // Packages an extension to a .crx installable file from a given directory. |
780 const char kPackExtension[] = "pack-extension"; | 783 const char kPackExtension[] = "pack-extension"; |
781 | 784 |
782 // Optional PEM private key to use in signing packaged .crx. | 785 // Optional PEM private key to use in signing packaged .crx. |
783 const char kPackExtensionKey[] = "pack-extension-key"; | 786 const char kPackExtensionKey[] = "pack-extension-key"; |
784 | 787 |
785 // Specifies the path to the user data folder for the parent profile. | 788 // Specifies the path to the user data folder for the parent profile. |
786 const char kParentProfile[] = "parent-profile"; | 789 const char kParentProfile[] = "parent-profile"; |
787 | 790 |
788 // Development flag for permission request API. This flag is needed until | 791 // Development flag for permission request API. This flag is needed until |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1344 | 1347 |
1345 // ----------------------------------------------------------------------------- | 1348 // ----------------------------------------------------------------------------- |
1346 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1349 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1347 // | 1350 // |
1348 // You were going to just dump your switches here, weren't you? Instead, please | 1351 // You were going to just dump your switches here, weren't you? Instead, please |
1349 // put them in alphabetical order above, or in order inside the appropriate | 1352 // put them in alphabetical order above, or in order inside the appropriate |
1350 // ifdef at the bottom. The order should match the header. | 1353 // ifdef at the bottom. The order should match the header. |
1351 // ----------------------------------------------------------------------------- | 1354 // ----------------------------------------------------------------------------- |
1352 | 1355 |
1353 } // namespace switches | 1356 } // namespace switches |
OLD | NEW |