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 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1336 // Specify the initial window position: --window-position=x,y | 1336 // Specify the initial window position: --window-position=x,y |
1337 const char kWindowPosition[] = "window-position"; | 1337 const char kWindowPosition[] = "window-position"; |
1338 | 1338 |
1339 // Specify the initial window size: --window-size=w,h | 1339 // Specify the initial window size: --window-size=w,h |
1340 const char kWindowSize[] = "window-size"; | 1340 const char kWindowSize[] = "window-size"; |
1341 | 1341 |
1342 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1342 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
1343 // use Chromium's network stack to fetch, and V8 to evaluate. | 1343 // use Chromium's network stack to fetch, and V8 to evaluate. |
1344 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1344 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1345 | 1345 |
| 1346 // If nonempty, fetch experimental zerosuggest suggestions by appending to this |
| 1347 // prefix of a URL. |
| 1348 const char kZerosuggestURLPrefix[] = "zerosuggest-url-prefix"; |
| 1349 |
1346 #if defined(OS_ANDROID) | 1350 #if defined(OS_ANDROID) |
1347 // Use the tablet specific UI components when available. | 1351 // Use the tablet specific UI components when available. |
1348 const char kTabletUI[] = "tablet-ui"; | 1352 const char kTabletUI[] = "tablet-ui"; |
1349 #endif | 1353 #endif |
1350 | 1354 |
1351 #if defined(OS_CHROMEOS) | 1355 #if defined(OS_CHROMEOS) |
1352 // When wallpaper boot animation is not disabled this switch | 1356 // When wallpaper boot animation is not disabled this switch |
1353 // is used to override OOBE/sign in WebUI init type. | 1357 // is used to override OOBE/sign in WebUI init type. |
1354 // Possible values: parallel|postpone. Default: parallel. | 1358 // Possible values: parallel|postpone. Default: parallel. |
1355 const char kAshWebUIInit[] = "ash-webui-init"; | 1359 const char kAshWebUIInit[] = "ash-webui-init"; |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1558 | 1562 |
1559 // ----------------------------------------------------------------------------- | 1563 // ----------------------------------------------------------------------------- |
1560 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1564 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1561 // | 1565 // |
1562 // You were going to just dump your switches here, weren't you? Instead, please | 1566 // You were going to just dump your switches here, weren't you? Instead, please |
1563 // put them in alphabetical order above, or in order inside the appropriate | 1567 // put them in alphabetical order above, or in order inside the appropriate |
1564 // ifdef at the bottom. The order should match the header. | 1568 // ifdef at the bottom. The order should match the header. |
1565 // ----------------------------------------------------------------------------- | 1569 // ----------------------------------------------------------------------------- |
1566 | 1570 |
1567 } // namespace switches | 1571 } // namespace switches |
OLD | NEW |