| 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 // Contains a list of experimental feature names which should not be included in |
| 788 // origin trials. Names should be separated by "|" characters. |
| 789 const char kOriginTrialDisabledFeatures[] = "origin-trial-disabled-features"; |
| 790 |
| 787 // Overrides the default public key for checking origin trial tokens. | 791 // Overrides the default public key for checking origin trial tokens. |
| 788 const char kOriginTrialPublicKey[] = "origin-trial-public-key"; | 792 const char kOriginTrialPublicKey[] = "origin-trial-public-key"; |
| 789 | 793 |
| 790 // Packages an extension to a .crx installable file from a given directory. | 794 // Packages an extension to a .crx installable file from a given directory. |
| 791 const char kPackExtension[] = "pack-extension"; | 795 const char kPackExtension[] = "pack-extension"; |
| 792 | 796 |
| 793 // Optional PEM private key to use in signing packaged .crx. | 797 // Optional PEM private key to use in signing packaged .crx. |
| 794 const char kPackExtensionKey[] = "pack-extension-key"; | 798 const char kPackExtensionKey[] = "pack-extension-key"; |
| 795 | 799 |
| 796 // Specifies the path to the user data folder for the parent profile. | 800 // Specifies the path to the user data folder for the parent profile. |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1389 | 1393 |
| 1390 // ----------------------------------------------------------------------------- | 1394 // ----------------------------------------------------------------------------- |
| 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1395 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1392 // | 1396 // |
| 1393 // You were going to just dump your switches here, weren't you? Instead, please | 1397 // You were going to just dump your switches here, weren't you? Instead, please |
| 1394 // put them in alphabetical order above, or in order inside the appropriate | 1398 // put them in alphabetical order above, or in order inside the appropriate |
| 1395 // ifdef at the bottom. The order should match the header. | 1399 // ifdef at the bottom. The order should match the header. |
| 1396 // ----------------------------------------------------------------------------- | 1400 // ----------------------------------------------------------------------------- |
| 1397 | 1401 |
| 1398 } // namespace switches | 1402 } // namespace switches |
| OLD | NEW |