blob: 91687a74b0a49b3f2e6356e3c1db72135a3e57a5 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_ACCOUNT_ID_HELPER_H_
#define COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_ACCOUNT_ID_HELPER_H_
#include "components/signin/core/browser/signin_manager.h"
#include "google_apis/gaia/gaia_oauth_client.h"
#include "google_apis/gaia/oauth2_token_service.h"
class CookieSettings;
class GaiaAuthFetcher;
class ProfileOAuth2TokenService;
class SigninClient;
// The helper class for managing the obfuscated GAIA ID of the primary
// account. It fetches the ID when user first signs into Chrome or when user
// opens a connected Chrome profile without an obfuscated GAIA ID, and stores
// the ID in the profile preference.
class SigninAccountIdHelper : public SigninManagerBase::Observer,
public OAuth2TokenService::Observer {
public:
SigninAccountIdHelper(SigninClient* client,
ProfileOAuth2TokenService* token_service,
SigninManagerBase* signin_manager);
virtual ~SigninAccountIdHelper();
// SigninManagerBase::Observer:
virtual void GoogleSignedOut(const std::string& username) OVERRIDE;
// OAuth2TokenService::Observer:
virtual void OnRefreshTokenAvailable(const std::string& account_id) OVERRIDE;
// Disables network requests for testing to avoid messing up with irrelevant
// tests.
static void SetDisableForTest(bool disable_for_test);
private:
// Invoked when receiving the response for |account_id_fetcher_|.
void OnPrimaryAccountIdFetched(const std::string& gaia_id);
// Helper class for fetching the obfuscated account ID.
class GaiaIdFetcher;
scoped_ptr<GaiaIdFetcher> id_fetcher_;
static bool disable_for_test_;
SigninClient* client_;
ProfileOAuth2TokenService* token_service_;
SigninManagerBase* signin_manager_;
DISALLOW_COPY_AND_ASSIGN(SigninAccountIdHelper);
};
#endif // COMPONENTS_SIGNIN_CORE_BROWSER_SIGNIN_ACCOUNT_ID_HELPER_H_