Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 11649055: OAuth2 sign-in flow for ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: wired policy with OAuth2 path Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 1431 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 const char kEnableDriveMetadataPrefetch[] = "enable-drive-metadata-prefetch"; 1442 const char kEnableDriveMetadataPrefetch[] = "enable-drive-metadata-prefetch";
1443 1443
1444 // Enables touchpad three-finger-click as middle button. 1444 // Enables touchpad three-finger-click as middle button.
1445 const char kEnableTouchpadThreeFingerClick[] 1445 const char kEnableTouchpadThreeFingerClick[]
1446 = "enable-touchpad-three-finger-click"; 1446 = "enable-touchpad-three-finger-click";
1447 1447
1448 // Enables touchpad three-finger swipe. 1448 // Enables touchpad three-finger swipe.
1449 const char kEnableTouchpadThreeFingerSwipe[] 1449 const char kEnableTouchpadThreeFingerSwipe[]
1450 = "enable-touchpad-three-finger-swipe"; 1450 = "enable-touchpad-three-finger-swipe";
1451 1451
1452 // Skips OAuth part of ChromeOS login process.
1453 const char kSkipOAuthLogin[] = "skip-oauth-login";
1454
1455 // Enable Kiosk mode for ChromeOS. 1452 // Enable Kiosk mode for ChromeOS.
1456 const char kEnableKioskMode[] = "enable-kiosk-mode"; 1453 const char kEnableKioskMode[] = "enable-kiosk-mode";
1457 1454
1458 // Disable policy-configured local accounts. 1455 // Disable policy-configured local accounts.
1459 const char kDisableLocalAccounts[] = "disable-local-accounts"; 1456 const char kDisableLocalAccounts[] = "disable-local-accounts";
1460 1457
1461 // Enables request of tablet site (via user agent override). 1458 // Enables request of tablet site (via user agent override).
1462 const char kEnableRequestTabletSite[] = "enable-request-tablet-site"; 1459 const char kEnableRequestTabletSite[] = "enable-request-tablet-site";
1463 1460
1464 // Enables static ip configuration. This flag should be removed when it's on by 1461 // Enables static ip configuration. This flag should be removed when it's on by
1465 // default. 1462 // default.
1466 const char kEnableStaticIPConfig[] = "enable-static-ip-config"; 1463 const char kEnableStaticIPConfig[] = "enable-static-ip-config";
1467 1464
1468 // Passed to Chrome on first boot. Not passed on restart after sign out. 1465 // Passed to Chrome on first boot. Not passed on restart after sign out.
1469 const char kFirstBoot[] = "first-boot"; 1466 const char kFirstBoot[] = "first-boot";
1470 1467
1468 // Forces driving authentication through OAuth2 stack instead of OAuth1.
1469 const char kForceOAuth2[] = "force-oauth2";
1470
1471 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for 1471 // If true, the Chromebook has a Chrome OS keyboard. Don't use the flag for
1472 // Chromeboxes. 1472 // Chromeboxes.
1473 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard"; 1473 const char kHasChromeOSKeyboard[] = "has-chromeos-keyboard";
1474 1474
1475 // Path for the screensaver used in Kiosk mode 1475 // Path for the screensaver used in Kiosk mode
1476 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path"; 1476 const char kKioskModeScreensaverPath[] = "kiosk-mode-screensaver-path";
1477 1477
1478 // Enables Chrome-as-a-login-manager behavior. 1478 // Enables Chrome-as-a-login-manager behavior.
1479 const char kLoginManager[] = "login-manager"; 1479 const char kLoginManager[] = "login-manager";
1480 1480
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1614 1614
1615 // ----------------------------------------------------------------------------- 1615 // -----------------------------------------------------------------------------
1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1617 // 1617 //
1618 // You were going to just dump your switches here, weren't you? Instead, please 1618 // You were going to just dump your switches here, weren't you? Instead, please
1619 // put them in alphabetical order above, or in order inside the appropriate 1619 // put them in alphabetical order above, or in order inside the appropriate
1620 // ifdef at the bottom. The order should match the header. 1620 // ifdef at the bottom. The order should match the header.
1621 // ----------------------------------------------------------------------------- 1621 // -----------------------------------------------------------------------------
1622 1622
1623 } // namespace switches 1623 } // namespace switches
OLDNEW
« chrome/browser/signin/signin_manager.cc ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698