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

Unified Diff: chrome/browser/signin/fake_signin_manager_builder.cc

Issue 1257623002: Componentize FakeSigninManager and SigninManager prefs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/signin/fake_signin_manager_builder.cc
diff --git a/chrome/browser/signin/fake_signin_manager.cc b/chrome/browser/signin/fake_signin_manager_builder.cc
similarity index 30%
copy from chrome/browser/signin/fake_signin_manager.cc
copy to chrome/browser/signin/fake_signin_manager_builder.cc
index f81b4b48bf467e8cecb3493bab59776ccdd4685f..887dade08fcb6559d75e125610163186d58e5fda 100644
--- a/chrome/browser/signin/fake_signin_manager.cc
+++ b/chrome/browser/signin/fake_signin_manager_builder.cc
@@ -2,110 +2,36 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/signin/fake_signin_manager.h"
+#include "chrome/browser/signin/fake_signin_manager_builder.h"
-#include "base/callback_helpers.h"
-#include "base/prefs/pref_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/signin/account_tracker_service_factory.h"
#include "chrome/browser/signin/chrome_signin_client_factory.h"
#include "chrome/browser/signin/gaia_cookie_manager_service_factory.h"
#include "chrome/browser/signin/profile_oauth2_token_service_factory.h"
#include "chrome/browser/signin/signin_manager_factory.h"
-#include "chrome/browser/ui/global_error/global_error_service.h"
-#include "chrome/browser/ui/global_error/global_error_service_factory.h"
-#include "chrome/common/pref_names.h"
-#include "components/signin/core/browser/account_tracker_service.h"
-FakeSigninManagerBase::FakeSigninManagerBase(Profile* profile)
- : SigninManagerBase(
- ChromeSigninClientFactory::GetForProfile(profile),
- AccountTrackerServiceFactory::GetForProfile(profile)) {}
-
-FakeSigninManagerBase::~FakeSigninManagerBase() {
-}
-
-// static
-scoped_ptr<KeyedService> FakeSigninManagerBase::Build(
+scoped_ptr<KeyedService> BuildFakeSigninManagerBase(
content::BrowserContext* context) {
scoped_ptr<SigninManagerBase> manager;
Profile* profile = static_cast<Profile*>(context);
-#if defined(OS_CHROMEOS)
- manager.reset(new FakeSigninManagerBase(profile));
-#else
- manager.reset(new FakeSigninManager(profile));
-#endif
- manager->Initialize(NULL);
+ manager.reset(new FakeSigninManagerForTesting(profile));
+ manager->Initialize(nullptr);
SigninManagerFactory::GetInstance()
->NotifyObserversOfSigninManagerCreationForTesting(manager.get());
return manager.Pass();
}
-#if !defined (OS_CHROMEOS)
-
-FakeSigninManager::FakeSigninManager(Profile* profile)
- : SigninManager(
+#if defined(OS_CHROMEOS)
+FakeSigninManagerForTesting::FakeSigninManagerForTesting(Profile* profile)
+ : FakeSigninManagerBase(
+ ChromeSigninClientFactory::GetForProfile(profile),
+ AccountTrackerServiceFactory::GetForProfile(profile)) {}
+#else
+FakeSigninManagerForTesting::FakeSigninManagerForTesting(Profile* profile)
+ : FakeSigninManager(
ChromeSigninClientFactory::GetForProfile(profile),
ProfileOAuth2TokenServiceFactory::GetForProfile(profile),
AccountTrackerServiceFactory::GetForProfile(profile),
GaiaCookieManagerServiceFactory::GetForProfile(profile)) {}
-
-FakeSigninManager::~FakeSigninManager() {
-}
-
-void FakeSigninManager::StartSignInWithRefreshToken(
- const std::string& refresh_token,
- const std::string& gaia_id,
- const std::string& username,
- const std::string& password,
- const OAuthTokenFetchedCallback& oauth_fetched_callback) {
- set_auth_in_progress(
- account_tracker_service()->SeedAccountInfo(gaia_id, username));
- set_password(password);
- username_ = username;
-
- if (!oauth_fetched_callback.is_null())
- oauth_fetched_callback.Run(refresh_token);
-}
-
-
-void FakeSigninManager::CompletePendingSignin() {
- SetAuthenticatedAccountId(GetAccountIdForAuthInProgress());
- set_auth_in_progress(std::string());
- FOR_EACH_OBSERVER(SigninManagerBase::Observer,
- observer_list_,
- GoogleSigninSucceeded(authenticated_account_id_,
- username_,
- password_));
-}
-
-void FakeSigninManager::SignIn(const std::string& gaia_id,
- const std::string& username,
- const std::string& password) {
- StartSignInWithRefreshToken(
- std::string(), gaia_id, username, password,
- OAuthTokenFetchedCallback());
- CompletePendingSignin();
-}
-
-void FakeSigninManager::FailSignin(const GoogleServiceAuthError& error) {
- FOR_EACH_OBSERVER(SigninManagerBase::Observer,
- observer_list_,
- GoogleSigninFailed(error));
-}
-
-void FakeSigninManager::SignOut(
- signin_metrics::ProfileSignout signout_source_metric) {
- if (IsSignoutProhibited())
- return;
- set_auth_in_progress(std::string());
- set_password(std::string());
- const std::string account_id = GetAuthenticatedAccountId();
- const std::string username = GetAuthenticatedUsername();
- authenticated_account_id_.clear();
-
- FOR_EACH_OBSERVER(SigninManagerBase::Observer, observer_list_,
- GoogleSignedOut(account_id, username));
-}
-
-#endif // !defined (OS_CHROMEOS)
+#endif
« no previous file with comments | « chrome/browser/signin/fake_signin_manager_builder.h ('k') | chrome/browser/signin/signin_error_notifier_ash_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698