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