Chromium Code Reviews| OLD | NEW |
|---|---|
| 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. |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 // Enables sending EnableRefreshTokenAnnotationRequest. | 28 // Enables sending EnableRefreshTokenAnnotationRequest. |
| 29 extern const char kEnableRefreshTokenAnnotationRequest[] = | 29 extern const char kEnableRefreshTokenAnnotationRequest[] = |
| 30 "enable-refresh-token-annotation-request"; | 30 "enable-refresh-token-annotation-request"; |
| 31 | 31 |
| 32 // Enables multiple account versions of chrome.identity APIs. | 32 // Enables multiple account versions of chrome.identity APIs. |
| 33 const char kExtensionsMultiAccount[] = "extensions-multi-account"; | 33 const char kExtensionsMultiAccount[] = "extensions-multi-account"; |
| 34 | 34 |
| 35 // Enables using GAIA information to populate profile name and icon. | 35 // Enables using GAIA information to populate profile name and icon. |
| 36 const char kGoogleProfileInfo[] = "google-profile-info"; | 36 const char kGoogleProfileInfo[] = "google-profile-info"; |
| 37 | 37 |
| 38 // Enables sign-in promo. | |
|
sdefresne
2017/03/29 10:37:07
Please sort alphabetically.
jlebel
2017/03/29 10:58:35
Done.
| |
| 39 const char kEnableSigninPromo[] = "enable-signin-promo"; | |
| 40 | |
| 41 // Disables sign-in promo. | |
|
sdefresne
2017/03/29 10:37:07
Ditto.
jlebel
2017/03/29 10:58:35
Done.
| |
| 42 const char kDisableSigninPromo[] = "disable-signin-promo"; | |
| 43 | |
| 38 // Enables or disables the new password separated sign in flow in a tab modal | 44 // Enables or disables the new password separated sign in flow in a tab modal |
| 39 // dialog. | 45 // dialog. |
| 40 const base::Feature kUsePasswordSeparatedSigninFlow { | 46 const base::Feature kUsePasswordSeparatedSigninFlow { |
| 41 "UsePasswordSeparatedSigninFlow", base::FEATURE_ENABLED_BY_DEFAULT | 47 "UsePasswordSeparatedSigninFlow", base::FEATURE_ENABLED_BY_DEFAULT |
| 42 }; | 48 }; |
| 43 | 49 |
| 44 } // namespace switches | 50 } // namespace switches |
| OLD | NEW |