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 1334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1345 // Specify the initial window position: --window-position=x,y | 1345 // Specify the initial window position: --window-position=x,y |
1346 const char kWindowPosition[] = "window-position"; | 1346 const char kWindowPosition[] = "window-position"; |
1347 | 1347 |
1348 // Specify the initial window size: --window-size=w,h | 1348 // Specify the initial window size: --window-size=w,h |
1349 const char kWindowSize[] = "window-size"; | 1349 const char kWindowSize[] = "window-size"; |
1350 | 1350 |
1351 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1351 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
1352 // use Chromium's network stack to fetch, and V8 to evaluate. | 1352 // use Chromium's network stack to fetch, and V8 to evaluate. |
1353 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1353 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1354 | 1354 |
1355 // If nonempty, fetch experimental zerosuggest suggestions by appending to this | |
samarth
2012/08/13 17:42:37
You already do mention "experimental" here but per
Jered
2012/08/13 22:23:59
Let's just go with --experimental-zerosuggest-url-
| |
1356 // prefix of a URL. | |
1357 const char kZerosuggestURLPrefix[] = "zerosuggest-url-prefix"; | |
1358 | |
1355 #if defined(OS_ANDROID) | 1359 #if defined(OS_ANDROID) |
1356 // Use the tablet specific UI components when available. | 1360 // Use the tablet specific UI components when available. |
1357 const char kTabletUI[] = "tablet-ui"; | 1361 const char kTabletUI[] = "tablet-ui"; |
1358 #endif | 1362 #endif |
1359 | 1363 |
1360 #if defined(OS_CHROMEOS) | 1364 #if defined(OS_CHROMEOS) |
1361 // When wallpaper boot animation is not disabled this switch | 1365 // When wallpaper boot animation is not disabled this switch |
1362 // is used to override OOBE/sign in WebUI init type. | 1366 // is used to override OOBE/sign in WebUI init type. |
1363 // Possible values: parallel|postpone. Default: parallel. | 1367 // Possible values: parallel|postpone. Default: parallel. |
1364 const char kAshWebUIInit[] = "ash-webui-init"; | 1368 const char kAshWebUIInit[] = "ash-webui-init"; |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1567 | 1571 |
1568 // ----------------------------------------------------------------------------- | 1572 // ----------------------------------------------------------------------------- |
1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1573 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1570 // | 1574 // |
1571 // You were going to just dump your switches here, weren't you? Instead, please | 1575 // You were going to just dump your switches here, weren't you? Instead, please |
1572 // put them in alphabetical order above, or in order inside the appropriate | 1576 // put them in alphabetical order above, or in order inside the appropriate |
1573 // ifdef at the bottom. The order should match the header. | 1577 // ifdef at the bottom. The order should match the header. |
1574 // ----------------------------------------------------------------------------- | 1578 // ----------------------------------------------------------------------------- |
1575 | 1579 |
1576 } // namespace switches | 1580 } // namespace switches |
OLD | NEW |