| 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 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 764 const char kNoSupervisedUserAcknowledgmentCheck[] = | 764 const char kNoSupervisedUserAcknowledgmentCheck[] = |
| 765 "no-managed-user-acknowledgment-check"; | 765 "no-managed-user-acknowledgment-check"; |
| 766 | 766 |
| 767 // Specifies the maximum number of threads to use for running the Proxy | 767 // Specifies the maximum number of threads to use for running the Proxy |
| 768 // Autoconfig (PAC) script. | 768 // Autoconfig (PAC) script. |
| 769 const char kNumPacThreads[] = "num-pac-threads"; | 769 const char kNumPacThreads[] = "num-pac-threads"; |
| 770 | 770 |
| 771 // Launches URL in new browser window. | 771 // Launches URL in new browser window. |
| 772 const char kOpenInNewWindow[] = "new-window"; | 772 const char kOpenInNewWindow[] = "new-window"; |
| 773 | 773 |
| 774 // Force use of QUIC for requests to the specified origin. | 774 // Specifies a comma separated list of host/port pairs to force use of QUIC. |
| 775 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; | 775 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; |
| 776 | 776 |
| 777 // The time that a new chrome process which is delegating to an already running | 777 // The time that a new chrome process which is delegating to an already running |
| 778 // chrome process started. (See ProcessSingleton for more details.) | 778 // chrome process started. (See ProcessSingleton for more details.) |
| 779 const char kOriginalProcessStartTime[] = "original-process-start-time"; | 779 const char kOriginalProcessStartTime[] = "original-process-start-time"; |
| 780 | 780 |
| 781 // Packages an extension to a .crx installable file from a given directory. | 781 // Packages an extension to a .crx installable file from a given directory. |
| 782 const char kPackExtension[] = "pack-extension"; | 782 const char kPackExtension[] = "pack-extension"; |
| 783 | 783 |
| 784 // Optional PEM private key to use in signing packaged .crx. | 784 // Optional PEM private key to use in signing packaged .crx. |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1360 | 1360 |
| 1361 // ----------------------------------------------------------------------------- | 1361 // ----------------------------------------------------------------------------- |
| 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1363 // | 1363 // |
| 1364 // You were going to just dump your switches here, weren't you? Instead, please | 1364 // You were going to just dump your switches here, weren't you? Instead, please |
| 1365 // put them in alphabetical order above, or in order inside the appropriate | 1365 // put them in alphabetical order above, or in order inside the appropriate |
| 1366 // ifdef at the bottom. The order should match the header. | 1366 // ifdef at the bottom. The order should match the header. |
| 1367 // ----------------------------------------------------------------------------- | 1367 // ----------------------------------------------------------------------------- |
| 1368 | 1368 |
| 1369 } // namespace switches | 1369 } // namespace switches |
| OLD | NEW |