| 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 1442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1453 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1453 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 1454 | 1454 |
| 1455 // Specifies a custom URL for the server which reports variation data to the | 1455 // Specifies a custom URL for the server which reports variation data to the |
| 1456 // client. Specifying this switch enables the Variations service on | 1456 // client. Specifying this switch enables the Variations service on |
| 1457 // unofficial builds. See variations_service.cc. | 1457 // unofficial builds. See variations_service.cc. |
| 1458 const char kVariationsServerURL[] = "variations-server-url"; | 1458 const char kVariationsServerURL[] = "variations-server-url"; |
| 1459 | 1459 |
| 1460 // Prints version information and quits. | 1460 // Prints version information and quits. |
| 1461 const char kVersion[] = "version"; | 1461 const char kVersion[] = "version"; |
| 1462 | 1462 |
| 1463 // Cycle through a series of URLs listed in the specified file. | |
| 1464 const char kVisitURLs[] = "visit-urls"; | |
| 1465 | |
| 1466 // Adds the given extension ID to all the permission whitelists. | 1463 // Adds the given extension ID to all the permission whitelists. |
| 1467 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; | 1464 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; |
| 1468 | 1465 |
| 1469 // Specify the initial window position: --window-position=x,y | 1466 // Specify the initial window position: --window-position=x,y |
| 1470 const char kWindowPosition[] = "window-position"; | 1467 const char kWindowPosition[] = "window-position"; |
| 1471 | 1468 |
| 1472 // Specify the initial window size: --window-size=w,h | 1469 // Specify the initial window size: --window-size=w,h |
| 1473 const char kWindowSize[] = "window-size"; | 1470 const char kWindowSize[] = "window-size"; |
| 1474 | 1471 |
| 1475 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1472 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1607 | 1604 |
| 1608 // ----------------------------------------------------------------------------- | 1605 // ----------------------------------------------------------------------------- |
| 1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1606 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1610 // | 1607 // |
| 1611 // You were going to just dump your switches here, weren't you? Instead, please | 1608 // You were going to just dump your switches here, weren't you? Instead, please |
| 1612 // put them in alphabetical order above, or in order inside the appropriate | 1609 // put them in alphabetical order above, or in order inside the appropriate |
| 1613 // ifdef at the bottom. The order should match the header. | 1610 // ifdef at the bottom. The order should match the header. |
| 1614 // ----------------------------------------------------------------------------- | 1611 // ----------------------------------------------------------------------------- |
| 1615 | 1612 |
| 1616 } // namespace switches | 1613 } // namespace switches |
| OLD | NEW |