Home
last modified time | relevance | path

Searched refs:GaiaAccount (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/components/autofill/content/browser/wallet/
Dgaia_account.cc14 GaiaAccount::~GaiaAccount() {} in ~GaiaAccount()
17 scoped_ptr<GaiaAccount> GaiaAccount::Create( in Create()
22 return scoped_ptr<GaiaAccount>(); in Create()
28 return scoped_ptr<GaiaAccount>(); in Create()
35 return scoped_ptr<GaiaAccount>(); in Create()
41 return scoped_ptr<GaiaAccount>(); in Create()
44 return scoped_ptr<GaiaAccount>(new GaiaAccount(email_address, in Create()
51 scoped_ptr<GaiaAccount> GaiaAccount::CreateForTesting( in CreateForTesting()
56 scoped_ptr<GaiaAccount> account(new GaiaAccount(email_address, in CreateForTesting()
63 bool GaiaAccount::operator==(const GaiaAccount& other) const { in operator ==()
[all …]
Dgaia_account.h19 class GaiaAccount {
21 ~GaiaAccount();
25 static scoped_ptr<GaiaAccount> Create(
28 static scoped_ptr<GaiaAccount> CreateForTesting(
34 bool operator==(const GaiaAccount& other) const;
35 bool operator!=(const GaiaAccount& other) const;
43 GaiaAccount(const std::string& email_address,
53 DISALLOW_COPY_AND_ASSIGN(GaiaAccount);
Dwallet_items.h40 class GaiaAccount; variable
219 void AddAccount(scoped_ptr<GaiaAccount> account);
248 const std::vector<GaiaAccount*>& gaia_accounts() const { in gaia_accounts()
313 ScopedVector<GaiaAccount> gaia_accounts_;
Dwallet_test_util.cc69 scoped_ptr<GaiaAccount> GetTestGaiaAccount() { in GetTestGaiaAccount()
70 return GaiaAccount::CreateForTesting("user@chromium.org", in GetTestGaiaAccount()
293 scoped_ptr<GaiaAccount> account(GaiaAccount::CreateForTesting( in GetTestWalletItemsWithUsers()
Dwallet_items_unittest.cc551 scoped_ptr<GaiaAccount> user1(GaiaAccount::CreateForTesting( in TEST_F()
557 scoped_ptr<GaiaAccount> user2(GaiaAccount::CreateForTesting( in TEST_F()
Dwallet_test_util.h18 class GaiaAccount; variable
21 scoped_ptr<GaiaAccount> GetTestGaiaAccount();
Dwallet_items.cc480 scoped_ptr<GaiaAccount> gaia_account( in CreateWalletItems()
481 GaiaAccount::Create(*account_dict)); in CreateWalletItems()
561 void WalletItems::AddAccount(scoped_ptr<GaiaAccount> account) { in AddAccount()
581 VectorsAreEqual<GaiaAccount>(gaia_accounts(), in operator ==()