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