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 1314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 // Enables touchpad three-finger-click as middle button. | 1325 // Enables touchpad three-finger-click as middle button. |
1326 const char kEnableTouchpadThreeFingerClick[] | 1326 const char kEnableTouchpadThreeFingerClick[] |
1327 = "touchpad-enable-three-finger-click"; | 1327 = "touchpad-enable-three-finger-click"; |
1328 | 1328 |
1329 // Skips OAuth part of ChromeOS login process. | 1329 // Skips OAuth part of ChromeOS login process. |
1330 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1330 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
1331 | 1331 |
1332 // Enables device policy support on ChromeOS. | 1332 // Enables device policy support on ChromeOS. |
1333 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1333 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1334 | 1334 |
| 1335 // Enables Drive v2 API instead of Google Documents List API. |
| 1336 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; |
| 1337 |
1335 // Enables the redirection of viewable document requests to the Google Document | 1338 // Enables the redirection of viewable document requests to the Google Document |
1336 // Viewer. | 1339 // Viewer. |
1337 const char kEnableGView[] = "enable-gview"; | 1340 const char kEnableGView[] = "enable-gview"; |
1338 | 1341 |
1339 // Enable Kiosk mode for ChromeOS | 1342 // Enable Kiosk mode for ChromeOS |
1340 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1343 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1341 | 1344 |
1342 // Enables mobile setup in a dialog. | 1345 // Enables mobile setup in a dialog. |
1343 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; | 1346 const char kEnableMobileSetupDialog[] = "enable-mobile-dialog"; |
1344 | 1347 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1490 | 1493 |
1491 // ----------------------------------------------------------------------------- | 1494 // ----------------------------------------------------------------------------- |
1492 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1495 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1493 // | 1496 // |
1494 // You were going to just dump your switches here, weren't you? Instead, please | 1497 // You were going to just dump your switches here, weren't you? Instead, please |
1495 // put them in alphabetical order above, or in order inside the appropriate | 1498 // put them in alphabetical order above, or in order inside the appropriate |
1496 // ifdef at the bottom. The order should match the header. | 1499 // ifdef at the bottom. The order should match the header. |
1497 // ----------------------------------------------------------------------------- | 1500 // ----------------------------------------------------------------------------- |
1498 | 1501 |
1499 } // namespace switches | 1502 } // namespace switches |
OLD | NEW |