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

Side by Side Diff: components/signin/core/common/signin_switches.cc

Issue 1344443002: Implement new password separated sign in flow for chrome desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 5 years, 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/signin/core/common/signin_switches.h" 5 #include "components/signin/core/common/signin_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // Clears the token service before using it. This allows simulating the 9 // Clears the token service before using it. This allows simulating the
10 // expiration of credentials during testing. 10 // expiration of credentials during testing.
11 const char kClearTokenService[] = "clear-token-service"; 11 const char kClearTokenService[] = "clear-token-service";
12 12
13 // Disables consistent identity features. 13 // Disables consistent identity features.
14 const char kDisableAccountConsistency[] = "disable-account-consistency"; 14 const char kDisableAccountConsistency[] = "disable-account-consistency";
15 15
16 // Disables new profile management system, including new profile chooser UI. 16 // Disables new profile management system, including new profile chooser UI.
17 const char kDisableNewProfileManagement[] = "disable-new-profile-management"; 17 const char kDisableNewProfileManagement[] = "disable-new-profile-management";
18 18
19 // Disables the new avatar menu, forcing the top-corner avatar button. 19 // Disables the new avatar menu, forcing the top-corner avatar button.
20 const char kDisableNewAvatarMenu[] = "disable-new-avatar-menu"; 20 const char kDisableNewAvatarMenu[] = "disable-new-avatar-menu";
21 21
22 // Disable sending signin scoped device id to LSO with refresh token request. 22 // Disables new gaia password-separated sign in flow.
23 const char kDisableNewGaiaSigninFlow[] = "disable-new-gaia-signin-flow";
24
25 // Disables sending signin scoped device id to LSO with refresh token request.
23 const char kDisableSigninScopedDeviceId[] = "disable-signin-scoped-device-id"; 26 const char kDisableSigninScopedDeviceId[] = "disable-signin-scoped-device-id";
24 27
25 // Enables consistent identity features. 28 // Enables consistent identity features.
26 const char kEnableAccountConsistency[] = "enable-account-consistency"; 29 const char kEnableAccountConsistency[] = "enable-account-consistency";
27 30
28 // Enables the old iframe-based flow for sign in. When not enabled, uses the 31 // Enables the old iframe-based flow for sign in. When not enabled, uses the
29 // webview-based flow. 32 // webview-based flow.
30 const char kEnableIframeBasedSignin[] = "enable-iframe-based-signin"; 33 const char kEnableIframeBasedSignin[] = "enable-iframe-based-signin";
31 34
32 // Enable the new avatar menu and the User Manager. 35 // Enables the new avatar menu and the User Manager.
33 const char kEnableNewAvatarMenu[] = "enable-new-avatar-menu"; 36 const char kEnableNewAvatarMenu[] = "enable-new-avatar-menu";
34 37
38 // Enables new gaia password-separated sign in flow.
39 const char kEnableNewGaiaSigninFlow[] = "enable-new-gaia-signin-flow";
40
35 // Enables new profile management system, including lock mode. 41 // Enables new profile management system, including lock mode.
36 const char kEnableNewProfileManagement[] = "new-profile-management"; 42 const char kEnableNewProfileManagement[] = "new-profile-management";
37 43
38 // Enable sending EnableRefreshTokenAnnotationRequest. 44 // Enables sending EnableRefreshTokenAnnotationRequest.
39 extern const char kEnableRefreshTokenAnnotationRequest[] = 45 extern const char kEnableRefreshTokenAnnotationRequest[] =
40 "enable-refresh-token-annotation-request"; 46 "enable-refresh-token-annotation-request";
41 47
42 // Enables multiple account versions of chrome.identity APIs. 48 // Enables multiple account versions of chrome.identity APIs.
43 const char kExtensionsMultiAccount[] = "extensions-multi-account"; 49 const char kExtensionsMultiAccount[] = "extensions-multi-account";
44 50
45 // Enables using GAIA information to populate profile name and icon. 51 // Enables using GAIA information to populate profile name and icon.
46 const char kGoogleProfileInfo[] = "google-profile-info"; 52 const char kGoogleProfileInfo[] = "google-profile-info";
47 53
48 } // namespace switches 54 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698