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 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1393 // certain hosted applications. | 1393 // certain hosted applications. |
1394 const char kEnableBackgroundLoader[] = "enable-background-loader"; | 1394 const char kEnableBackgroundLoader[] = "enable-background-loader"; |
1395 | 1395 |
1396 // Enables touchpad three-finger-click as middle button. | 1396 // Enables touchpad three-finger-click as middle button. |
1397 const char kEnableTouchpadThreeFingerClick[] | 1397 const char kEnableTouchpadThreeFingerClick[] |
1398 = "touchpad-enable-three-finger-click"; | 1398 = "touchpad-enable-three-finger-click"; |
1399 | 1399 |
1400 // Skips OAuth part of ChromeOS login process. | 1400 // Skips OAuth part of ChromeOS login process. |
1401 const char kSkipOAuthLogin[] = "skip-oauth-login"; | 1401 const char kSkipOAuthLogin[] = "skip-oauth-login"; |
1402 | 1402 |
1403 // Use level db for drive metadata storage. | |
1404 const char kUseLevelDBForGData[] = "use-leveldb-for-gdata"; | |
1405 | |
1406 // Enables the redirection of viewable document requests to the Google Document | 1403 // Enables the redirection of viewable document requests to the Google Document |
1407 // Viewer. | 1404 // Viewer. |
1408 const char kEnableGView[] = "enable-gview"; | 1405 const char kEnableGView[] = "enable-gview"; |
1409 | 1406 |
1410 // Enable Kiosk mode for ChromeOS | 1407 // Enable Kiosk mode for ChromeOS |
1411 const char kEnableKioskMode[] = "enable-kiosk-mode"; | 1408 const char kEnableKioskMode[] = "enable-kiosk-mode"; |
1412 | 1409 |
1413 // Enables request of tablet site (via user agent override). | 1410 // Enables request of tablet site (via user agent override). |
1414 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; | 1411 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; |
1415 | 1412 |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1580 | 1577 |
1581 // ----------------------------------------------------------------------------- | 1578 // ----------------------------------------------------------------------------- |
1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1579 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1583 // | 1580 // |
1584 // You were going to just dump your switches here, weren't you? Instead, please | 1581 // You were going to just dump your switches here, weren't you? Instead, please |
1585 // put them in alphabetical order above, or in order inside the appropriate | 1582 // put them in alphabetical order above, or in order inside the appropriate |
1586 // ifdef at the bottom. The order should match the header. | 1583 // ifdef at the bottom. The order should match the header. |
1587 // ----------------------------------------------------------------------------- | 1584 // ----------------------------------------------------------------------------- |
1588 | 1585 |
1589 } // namespace switches | 1586 } // namespace switches |
OLD | NEW |