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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 | 1363 |
1364 // Skips OAuth part of ChromeOS login process. | 1364 // Skips OAuth part of ChromeOS login process. |
1365 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1365 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
1366 | 1366 |
1367 // Enables device policy support on ChromeOS. | 1367 // Enables device policy support on ChromeOS. |
1368 const char kEnableDevicePolicy[] = "enable-device-policy"; | 1368 const char kEnableDevicePolicy[] = "enable-device-policy"; |
1369 | 1369 |
1370 // Enables Drive v2 API instead of Google Documents List API. | 1370 // Enables Drive v2 API instead of Google Documents List API. |
1371 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; | 1371 const char kEnableDriveV2Api[] = "enable-drive-v2-api"; |
1372 | 1372 |
| 1373 // Use level db for drive metadata storage. |
| 1374 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; |
| 1375 |
1373 // Enables the redirection of viewable document requests to the Google Document | 1376 // Enables the redirection of viewable document requests to the Google Document |
1374 // Viewer. | 1377 // Viewer. |
1375 const char kEnableGView[] = "enable-gview"; | 1378 const char kEnableGView[] = "enable-gview"; |
1376 | 1379 |
1377 // Enable Kiosk mode for ChromeOS | 1380 // Enable Kiosk mode for ChromeOS |
1378 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1381 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1379 | 1382 |
1380 // Enables support for policy-configured networks. | 1383 // Enables support for policy-configured networks. |
1381 const char kEnableONCPolicy[] = "enable-onc-policy"; | 1384 const char kEnableONCPolicy[] = "enable-onc-policy"; |
1382 | 1385 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1547 | 1550 |
1548 // ----------------------------------------------------------------------------- | 1551 // ----------------------------------------------------------------------------- |
1549 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1552 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1550 // | 1553 // |
1551 // You were going to just dump your switches here, weren't you? Instead, please | 1554 // You were going to just dump your switches here, weren't you? Instead, please |
1552 // put them in alphabetical order above, or in order inside the appropriate | 1555 // put them in alphabetical order above, or in order inside the appropriate |
1553 // ifdef at the bottom. The order should match the header. | 1556 // ifdef at the bottom. The order should match the header. |
1554 // ----------------------------------------------------------------------------- | 1557 // ----------------------------------------------------------------------------- |
1555 | 1558 |
1556 } // namespace switches | 1559 } // namespace switches |
OLD | NEW |