Home
last modified time | relevance | path

Searched refs:AccountInfo (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/components/signin/core/browser/
Daccount_tracker_service.h34 struct AccountInfo { struct
47 virtual void OnAccountUpdated(const AccountInfo& info) = 0; argument
48 virtual void OnAccountRemoved(const AccountInfo& info) = 0;
73 std::vector<AccountInfo> GetAccounts() const;
74 AccountInfo GetAccountInfo(const std::string& account_id);
75 AccountInfo FindAccountInfoByGaiaId(const std::string& gaia_id);
76 AccountInfo FindAccountInfoByEmail(const std::string& email);
98 AccountInfo info;
Dmutable_profile_oauth2_token_service.cc83 MutableProfileOAuth2TokenService::AccountInfo::AccountInfo( in AccountInfo() function in MutableProfileOAuth2TokenService::AccountInfo
96 MutableProfileOAuth2TokenService::AccountInfo::~AccountInfo() { in ~AccountInfo()
100 void MutableProfileOAuth2TokenService::AccountInfo::SetLastAuthError( in SetLastAuthError()
109 MutableProfileOAuth2TokenService::AccountInfo::GetAccountId() const { in GetAccountId()
114 MutableProfileOAuth2TokenService::AccountInfo::GetUsername() const { in GetUsername()
121 MutableProfileOAuth2TokenService::AccountInfo::GetAuthStatus() const { in GetAuthStatus()
204 new AccountInfo(this, loading_primary_account_id_, std::string())); in OnWebDataServiceRequestDone()
247 new AccountInfo(this, account_id, refresh_token)); in LoadAllCredentialsIntoMemory()
319 new AccountInfo(this, account_id, refresh_token)); in UpdateCredentials()
Dmutable_profile_oauth2_token_service.h39 class AccountInfo : public SigninErrorController::AuthStatusProvider {
41 AccountInfo(ProfileOAuth2TokenService* token_service,
44 virtual ~AccountInfo();
64 DISALLOW_COPY_AND_ASSIGN(AccountInfo);
69 typedef std::map<std::string, linked_ptr<AccountInfo> > AccountInfoMap;
Daccount_tracker_service_unittest.cc117 const AccountTrackerService::AccountInfo& ids) OVERRIDE;
119 const AccountTrackerService::AccountInfo& ids) OVERRIDE;
128 const AccountTrackerService::AccountInfo& ids) { in OnAccountUpdated()
133 const AccountTrackerService::AccountInfo& ids) { in OnAccountRemoved()
371 std::vector<AccountTrackerService::AccountInfo> infos = in TEST_F()
387 AccountTrackerService::AccountInfo info = in TEST_F()
394 AccountTrackerService::AccountInfo info = in TEST_F()
404 AccountTrackerService::AccountInfo info = in TEST_F()
416 AccountTrackerService::AccountInfo info = in TEST_F()
431 AccountTrackerService::AccountInfo info = in TEST_F()
[all …]
Daccount_tracker_service.cc194 std::vector<AccountTrackerService::AccountInfo>
196 std::vector<AccountInfo> accounts; in GetAccounts()
208 AccountTrackerService::AccountInfo AccountTrackerService::GetAccountInfo( in GetAccountInfo()
213 return AccountInfo(); in GetAccountInfo()
216 AccountTrackerService::AccountInfo
228 return AccountInfo(); in FindAccountInfoByGaiaId()
231 AccountTrackerService::AccountInfo
243 return AccountInfo(); in FindAccountInfoByEmail()
/external/chromium_org/components/signin/ios/browser/
Dprofile_oauth2_token_service_ios.h86 class AccountInfo : public SigninErrorController::AuthStatusProvider {
88 AccountInfo(ProfileOAuth2TokenService* token_service,
90 virtual ~AccountInfo();
104 DISALLOW_COPY_AND_ASSIGN(AccountInfo);
109 typedef std::map<std::string, linked_ptr<AccountInfo> > AccountInfoMap;
Dprofile_oauth2_token_service_ios.mm132 ProfileOAuth2TokenServiceIOS::AccountInfo::AccountInfo( function
143 ProfileOAuth2TokenServiceIOS::AccountInfo::~AccountInfo() { function
147 void ProfileOAuth2TokenServiceIOS::AccountInfo::SetLastAuthError(
155 std::string ProfileOAuth2TokenServiceIOS::AccountInfo::GetAccountId() const {
159 std::string ProfileOAuth2TokenServiceIOS::AccountInfo::GetUsername() const {
166 ProfileOAuth2TokenServiceIOS::AccountInfo::GetAuthStatus() const {
335 accounts_[account_id].reset(new AccountInfo(this, account_id));
/external/chromium_org/chrome/browser/services/gcm/
Dgcm_account_tracker.h40 struct AccountInfo { struct
41 AccountInfo(const std::string& email, AccountState state);
42 ~AccountInfo();
80 typedef std::map<std::string, AccountInfo> AccountInfos;
Dgcm_account_tracker.cc22 GCMAccountTracker::AccountInfo::AccountInfo(const std::string& email, in AccountInfo() function in gcm::GCMAccountTracker::AccountInfo
27 GCMAccountTracker::AccountInfo::~AccountInfo() { in ~AccountInfo()
65 iter->account_key, AccountInfo(iter->email, TOKEN_NEEDED))); in Start()
235 std::make_pair(ids.account_key, AccountInfo(ids.email, TOKEN_NEEDED))); in OnAccountSignedIn()
/external/chromium_org/chrome/common/extensions/api/
Didentity.idl8 dictionary AccountInfo {
39 AccountInfo? account;
73 callback GetAccountsCallback = void (AccountInfo[] accounts);
79 // Retrieves a list of AccountInfo objects describing the accounts
159 static void onSignInChanged(AccountInfo account, boolean signedIn);
/external/chromium_org/chrome/browser/extensions/api/identity/
Didentity_api.cc229 api::identity::AccountInfo account_info; in OnAccountSignInChanged()
280 api::identity::AccountInfo account_info; in Run()
Didentity_apitest.cc438 scoped_ptr<api::identity::AccountInfo> info = in ExpectGetAccounts()
439 api::identity::AccountInfo::FromValue(**it); in ExpectGetAccounts()
472 scoped_ptr<api::identity::AccountInfo> info = in GenerateFailureResult()
473 api::identity::AccountInfo::FromValue(**it); in GenerateFailureResult()