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 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1330 | 1330 |
1331 // Specify the initial window size: --window-size=w,h | 1331 // Specify the initial window size: --window-size=w,h |
1332 const char kWindowSize[] = "window-size"; | 1332 const char kWindowSize[] = "window-size"; |
1333 | 1333 |
1334 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to | 1334 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to |
1335 // use Chromium's network stack to fetch, and V8 to evaluate. | 1335 // use Chromium's network stack to fetch, and V8 to evaluate. |
1336 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1336 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1337 | 1337 |
1338 #if defined(OS_ANDROID) | 1338 #if defined(OS_ANDROID) |
1339 // Use the tablet specific UI components when available. | 1339 // Use the tablet specific UI components when available. |
1340 const char kTabletUi[] = "tablet-ui"; | 1340 const char kTabletUI[] = "tablet-ui"; |
1341 #endif | 1341 #endif |
1342 | 1342 |
1343 #if defined(OS_CHROMEOS) | 1343 #if defined(OS_CHROMEOS) |
1344 // Disables gdata content provider. | 1344 // Disables gdata content provider. |
1345 const char kDisableGData[] = "disable-gdata"; | 1345 const char kDisableGData[] = "disable-gdata"; |
1346 | 1346 |
1347 // Disables new OOBE/sign in design. | 1347 // Disables new OOBE/sign in design. |
1348 extern const char kDisableNewOobe[] = "disable-new-oobe"; | 1348 extern const char kDisableNewOobe[] = "disable-new-oobe"; |
1349 | 1349 |
1350 // Enables touchpad three-finger-click as middle button. | 1350 // Enables touchpad three-finger-click as middle button. |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1518 | 1518 |
1519 // ----------------------------------------------------------------------------- | 1519 // ----------------------------------------------------------------------------- |
1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1520 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1521 // | 1521 // |
1522 // You were going to just dump your switches here, weren't you? Instead, please | 1522 // You were going to just dump your switches here, weren't you? Instead, please |
1523 // put them in alphabetical order above, or in order inside the appropriate | 1523 // put them in alphabetical order above, or in order inside the appropriate |
1524 // ifdef at the bottom. The order should match the header. | 1524 // ifdef at the bottom. The order should match the header. |
1525 // ----------------------------------------------------------------------------- | 1525 // ----------------------------------------------------------------------------- |
1526 | 1526 |
1527 } // namespace switches | 1527 } // namespace switches |
OLD | NEW |