| 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 21 matching lines...) Expand all Loading... |
| 32 // Enable the new avatar menu and the User Manager. | 32 // Enable the new avatar menu and the User Manager. |
| 33 const char kEnableNewAvatarMenu[] = "enable-new-avatar-menu"; | 33 const char kEnableNewAvatarMenu[] = "enable-new-avatar-menu"; |
| 34 | 34 |
| 35 // Enables new profile management system, including lock mode. | 35 // Enables new profile management system, including lock mode. |
| 36 const char kEnableNewProfileManagement[] = "new-profile-management"; | 36 const char kEnableNewProfileManagement[] = "new-profile-management"; |
| 37 | 37 |
| 38 // Enable sending EnableRefreshTokenAnnotationRequest. | 38 // Enable sending EnableRefreshTokenAnnotationRequest. |
| 39 extern const char kEnableRefreshTokenAnnotationRequest[] = | 39 extern const char kEnableRefreshTokenAnnotationRequest[] = |
| 40 "enable-refresh-token-annotation-request"; | 40 "enable-refresh-token-annotation-request"; |
| 41 | 41 |
| 42 // Enables the pure web-based flow for sign in on first run/NTP/wrench menu/ | |
| 43 // settings page. | |
| 44 const char kEnableWebBasedSignin[] = "enable-web-based-signin"; | |
| 45 | |
| 46 // Enables multiple account versions of chrome.identity APIs. | 42 // Enables multiple account versions of chrome.identity APIs. |
| 47 const char kExtensionsMultiAccount[] = "extensions-multi-account"; | 43 const char kExtensionsMultiAccount[] = "extensions-multi-account"; |
| 48 | 44 |
| 49 // Allows displaying the list of existing profiles in the avatar bubble for | 45 // Allows displaying the list of existing profiles in the avatar bubble for |
| 50 // fast switching between profiles. | 46 // fast switching between profiles. |
| 51 const char kFastUserSwitching[] = "fast-user-switching"; | 47 const char kFastUserSwitching[] = "fast-user-switching"; |
| 52 | 48 |
| 53 // Enables using GAIA information to populate profile name and icon. | 49 // Enables using GAIA information to populate profile name and icon. |
| 54 const char kGoogleProfileInfo[] = "google-profile-info"; | 50 const char kGoogleProfileInfo[] = "google-profile-info"; |
| 55 | 51 |
| 56 } // namespace switches | 52 } // namespace switches |
| OLD | NEW |