| 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 1356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; | 1367 const char kUseSimpleCacheBackend[] = "use-simple-cache-backend"; |
| 1368 | 1368 |
| 1369 // Specifies a custom URL for the server which reports variation data to the | 1369 // Specifies a custom URL for the server which reports variation data to the |
| 1370 // client. Specifying this switch enables the Variations service on | 1370 // client. Specifying this switch enables the Variations service on |
| 1371 // unofficial builds. See variations_service.cc. | 1371 // unofficial builds. See variations_service.cc. |
| 1372 const char kVariationsServerURL[] = "variations-server-url"; | 1372 const char kVariationsServerURL[] = "variations-server-url"; |
| 1373 | 1373 |
| 1374 // Prints version information and quits. | 1374 // Prints version information and quits. |
| 1375 const char kVersion[] = "version"; | 1375 const char kVersion[] = "version"; |
| 1376 | 1376 |
| 1377 // Adds the given extension ID to all the permission whitelists. | |
| 1378 const char kWhitelistedExtensionID[] = "whitelisted-extension-id"; | |
| 1379 | |
| 1380 // Specify the initial window position: --window-position=x,y | 1377 // Specify the initial window position: --window-position=x,y |
| 1381 const char kWindowPosition[] = "window-position"; | 1378 const char kWindowPosition[] = "window-position"; |
| 1382 | 1379 |
| 1383 // Specify the initial window size: --window-size=w,h | 1380 // Specify the initial window size: --window-size=w,h |
| 1384 const char kWindowSize[] = "window-size"; | 1381 const char kWindowSize[] = "window-size"; |
| 1385 | 1382 |
| 1386 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1383 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| 1387 // use Chromium's network stack to fetch, and V8 to evaluate. | 1384 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1388 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1385 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1389 | 1386 |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1550 | 1547 |
| 1551 // ----------------------------------------------------------------------------- | 1548 // ----------------------------------------------------------------------------- |
| 1552 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1549 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1553 // | 1550 // |
| 1554 // You were going to just dump your switches here, weren't you? Instead, please | 1551 // You were going to just dump your switches here, weren't you? Instead, please |
| 1555 // put them in alphabetical order above, or in order inside the appropriate | 1552 // put them in alphabetical order above, or in order inside the appropriate |
| 1556 // ifdef at the bottom. The order should match the header. | 1553 // ifdef at the bottom. The order should match the header. |
| 1557 // ----------------------------------------------------------------------------- | 1554 // ----------------------------------------------------------------------------- |
| 1558 | 1555 |
| 1559 } // namespace switches | 1556 } // namespace switches |
| OLD | NEW |