| 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 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1379 // Sets the maximum concurrent streams over a SPDY session. | 1379 // Sets the maximum concurrent streams over a SPDY session. |
| 1380 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; | 1380 const char kMaxSpdyConcurrentStreams[] = "max-spdy-concurrent-streams"; |
| 1381 | 1381 |
| 1382 // Specifies the user data directory, which is where the browser will look for | 1382 // Specifies the user data directory, which is where the browser will look for |
| 1383 // all of its state. | 1383 // all of its state. |
| 1384 const char kUserDataDir[] = "user-data-dir"; | 1384 const char kUserDataDir[] = "user-data-dir"; |
| 1385 | 1385 |
| 1386 // Uses the ClientLogin signin flow instead of the web-based signin flow. | 1386 // Uses the ClientLogin signin flow instead of the web-based signin flow. |
| 1387 const char kUseClientLoginSigninFlow[] = "use-client-login-signin-flow"; | 1387 const char kUseClientLoginSigninFlow[] = "use-client-login-signin-flow"; |
| 1388 | 1388 |
| 1389 // Examines a .crx for validity and prints the result. |
| 1390 const char kValidateCrx[] = "validate-crx"; |
| 1391 |
| 1389 // Uses experimental simple cache backend if possible. | 1392 // Uses experimental simple cache backend if possible. |
| 1390 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1393 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 1391 | 1394 |
| 1392 // Specifies a custom URL for the server which reports variation data to the | 1395 // Specifies a custom URL for the server which reports variation data to the |
| 1393 // client. Specifying this switch enables the Variations service on | 1396 // client. Specifying this switch enables the Variations service on |
| 1394 // unofficial builds. See variations_service.cc. | 1397 // unofficial builds. See variations_service.cc. |
| 1395 const char kVariationsServerURL[] = "variations-server-url"; | 1398 const char kVariationsServerURL[] = "variations-server-url"; |
| 1396 | 1399 |
| 1397 // Prints version information and quits. | 1400 // Prints version information and quits. |
| 1398 const char kVersion[] = "version"; | 1401 const char kVersion[] = "version"; |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1673 | 1676 |
| 1674 // ----------------------------------------------------------------------------- | 1677 // ----------------------------------------------------------------------------- |
| 1675 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1678 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1676 // | 1679 // |
| 1677 // You were going to just dump your switches here, weren't you? Instead, please | 1680 // You were going to just dump your switches here, weren't you? Instead, please |
| 1678 // put them in alphabetical order above, or in order inside the appropriate | 1681 // put them in alphabetical order above, or in order inside the appropriate |
| 1679 // ifdef at the bottom. The order should match the header. | 1682 // ifdef at the bottom. The order should match the header. |
| 1680 // ----------------------------------------------------------------------------- | 1683 // ----------------------------------------------------------------------------- |
| 1681 | 1684 |
| 1682 } // namespace switches | 1685 } // namespace switches |
| OLD | NEW |