| 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 // These are functions to access various profile-management flags but with | 5 // These are functions to access various profile-management flags but with |
| 6 // possible overrides from Experiements. This is done inside chrome/common | 6 // possible overrides from Experiements. This is done inside chrome/common |
| 7 // because it is accessed by files through the chrome/ directory tree. | 7 // because it is accessed by files through the chrome/ directory tree. |
| 8 | 8 |
| 9 #ifndef COMPONENTS_SIGNIN_CORE_COMMON_PROFILE_MANAGEMENT_SWITCHES_H_ | 9 #ifndef COMPONENTS_SIGNIN_CORE_COMMON_PROFILE_MANAGEMENT_SWITCHES_H_ |
| 10 #define COMPONENTS_SIGNIN_CORE_COMMON_PROFILE_MANAGEMENT_SWITCHES_H_ | 10 #define COMPONENTS_SIGNIN_CORE_COMMON_PROFILE_MANAGEMENT_SWITCHES_H_ |
| 11 | 11 |
| 12 #include "build/build_config.h" |
| 13 |
| 12 namespace base { | 14 namespace base { |
| 13 class CommandLine; | 15 class CommandLine; |
| 14 } | 16 } |
| 15 | 17 |
| 16 namespace switches { | 18 namespace switches { |
| 17 | 19 |
| 20 enum class AccountConsistencyMethod { |
| 21 kDisabled, // No account consistency. |
| 22 kMirror, // Account management UI in the avatar bubble. |
| 23 kDice // Account management UI on Gaia webpages. |
| 24 }; |
| 25 |
| 26 // Returns the account consistency method. |
| 27 AccountConsistencyMethod GetAccountConsistencyMethod(); |
| 28 |
| 18 // Checks whether Mirror account consistency is enabled. If enabled, the account | 29 // Checks whether Mirror account consistency is enabled. If enabled, the account |
| 19 // management UI is available in the avatar bubble. | 30 // management UI is available in the avatar bubble. |
| 31 // DEPRECATED: Use GetAccountConsistencyMethod() instead. |
| 20 bool IsAccountConsistencyMirrorEnabled(); | 32 bool IsAccountConsistencyMirrorEnabled(); |
| 21 | 33 |
| 22 // Whether the chrome.identity API should be multi-account. | 34 // Whether the chrome.identity API should be multi-account. |
| 23 bool IsExtensionsMultiAccount(); | 35 bool IsExtensionsMultiAccount(); |
| 24 | 36 |
| 25 // Called in tests to force enable Mirror account consistency. | 37 // Called in tests to force enable Mirror account consistency. |
| 26 void EnableAccountConsistencyMirrorForTesting(base::CommandLine* command_line); | 38 void EnableAccountConsistencyMirrorForTesting(base::CommandLine* command_line); |
| 27 | 39 |
| 40 // Dice is only supported on desktop. |
| 41 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 42 // Called in tests to force enable Dice account consistency. |
| 43 void EnableAccountConsistencyDiceForTesting(base::CommandLine* command_line); |
| 44 #endif |
| 45 |
| 28 } // namespace switches | 46 } // namespace switches |
| 29 | 47 |
| 30 #endif // COMPONENTS_SIGNIN_CORE_COMMON_PROFILE_MANAGEMENT_SWITCHES_H_ | 48 #endif // COMPONENTS_SIGNIN_CORE_COMMON_PROFILE_MANAGEMENT_SWITCHES_H_ |
| OLD | NEW |