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 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 // use Chromium's network stack to fetch, and V8 to evaluate. | 1231 // use Chromium's network stack to fetch, and V8 to evaluate. |
1232 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; | 1232 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; |
1233 | 1233 |
1234 #if defined(OS_CHROMEOS) | 1234 #if defined(OS_CHROMEOS) |
1235 // Disables gdata content provider. | 1235 // Disables gdata content provider. |
1236 const char kDisableGData[] = "disable-gdata"; | 1236 const char kDisableGData[] = "disable-gdata"; |
1237 | 1237 |
1238 // Enables Libcros. | 1238 // Enables Libcros. |
1239 const char kEnableLibcros[] = "enable-libcros"; | 1239 const char kEnableLibcros[] = "enable-libcros"; |
1240 | 1240 |
| 1241 // Enables touchpad three-finger-click as middle button. |
| 1242 const char kEnableTouchpadThreeFingerClick[] |
| 1243 = "touchpad-enable-three-finger-click"; |
| 1244 |
1241 // Skips OAuth part of ChromeOS login process. | 1245 // Skips OAuth part of ChromeOS login process. |
1242 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1246 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
1243 | 1247 |
1244 // Enables device policy support on ChromeOS. | 1248 // Enables device policy support on ChromeOS. |
1245 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1249 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1246 | 1250 |
1247 // Enables the redirection of viewable document requests to the Google Document | 1251 // Enables the redirection of viewable document requests to the Google Document |
1248 // Viewer. | 1252 // Viewer. |
1249 const char kEnableGView[] = "enable-gview"; | 1253 const char kEnableGView[] = "enable-gview"; |
1250 | 1254 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1415 | 1419 |
1416 // ----------------------------------------------------------------------------- | 1420 // ----------------------------------------------------------------------------- |
1417 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1421 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1418 // | 1422 // |
1419 // You were going to just dump your switches here, weren't you? Instead, please | 1423 // You were going to just dump your switches here, weren't you? Instead, please |
1420 // put them in alphabetical order above, or in order inside the appropriate | 1424 // put them in alphabetical order above, or in order inside the appropriate |
1421 // ifdef at the bottom. The order should match the header. | 1425 // ifdef at the bottom. The order should match the header. |
1422 // ----------------------------------------------------------------------------- | 1426 // ----------------------------------------------------------------------------- |
1423 | 1427 |
1424 } // namespace switches | 1428 } // namespace switches |
OLD | NEW |