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