| 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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 // Specify the initial window position: --window-position=x,y | 1344 // Specify the initial window position: --window-position=x,y |
| 1345 const char kWindowPosition[] = "window-position"; | 1345 const char kWindowPosition[] = "window-position"; |
| 1346 | 1346 |
| 1347 // Specify the initial window size: --window-size=w,h | 1347 // Specify the initial window size: --window-size=w,h |
| 1348 const char kWindowSize[] = "window-size"; | 1348 const char kWindowSize[] = "window-size"; |
| 1349 | 1349 |
| 1350 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1350 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
| 1351 // use Chromium's network stack to fetch, and V8 to evaluate. | 1351 // use Chromium's network stack to fetch, and V8 to evaluate. |
| 1352 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1352 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
| 1353 | 1353 |
| 1354 // Origin for which GoogleSpdyProxy authentication is supported. |
| 1355 const char kSpdyProxyOrigin[] = "spdy-proxy-origin"; |
| 1356 |
| 1354 #if defined(OS_ANDROID) | 1357 #if defined(OS_ANDROID) |
| 1355 // Use the tablet specific UI components when available. | 1358 // Use the tablet specific UI components when available. |
| 1356 const char kTabletUI[] = "tablet-ui"; | 1359 const char kTabletUI[] = "tablet-ui"; |
| 1357 #endif | 1360 #endif |
| 1358 | 1361 |
| 1359 #if defined(OS_CHROMEOS) | 1362 #if defined(OS_CHROMEOS) |
| 1360 // When wallpaper boot animation is not disabled this switch | 1363 // When wallpaper boot animation is not disabled this switch |
| 1361 // is used to override OOBE/sign in WebUI init type. | 1364 // is used to override OOBE/sign in WebUI init type. |
| 1362 // Possible values: parallel|postpone. Default: parallel. | 1365 // Possible values: parallel|postpone. Default: parallel. |
| 1363 const char kAshWebUIInit[] = "ash-webui-init"; | 1366 const char kAshWebUIInit[] = "ash-webui-init"; |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1577 | 1580 |
| 1578 // ----------------------------------------------------------------------------- | 1581 // ----------------------------------------------------------------------------- |
| 1579 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1580 // | 1583 // |
| 1581 // You were going to just dump your switches here, weren't you? Instead, please | 1584 // You were going to just dump your switches here, weren't you? Instead, please |
| 1582 // put them in alphabetical order above, or in order inside the appropriate | 1585 // put them in alphabetical order above, or in order inside the appropriate |
| 1583 // ifdef at the bottom. The order should match the header. | 1586 // ifdef at the bottom. The order should match the header. |
| 1584 // ----------------------------------------------------------------------------- | 1587 // ----------------------------------------------------------------------------- |
| 1585 | 1588 |
| 1586 } // namespace switches | 1589 } // namespace switches |
| OLD | NEW |