Home
last modified time | relevance | path

Searched refs:FullWallet (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/components/autofill/content/browser/wallet/
Dfull_wallet.cc26 FullWallet::FullWallet(int expiration_month, in FullWallet() function in autofill::wallet::FullWallet
43 FullWallet::~FullWallet() {} in ~FullWallet()
46 scoped_ptr<FullWallet>
47 FullWallet::CreateFullWallet(const base::DictionaryValue& dictionary) { in CreateFullWallet()
58 return scoped_ptr<FullWallet>(); in CreateFullWallet()
64 return scoped_ptr<FullWallet>(new FullWallet(-1, in CreateFullWallet()
79 return scoped_ptr<FullWallet>(); in CreateFullWallet()
85 return scoped_ptr<FullWallet>(); in CreateFullWallet()
91 return scoped_ptr<FullWallet>(); in CreateFullWallet()
97 return scoped_ptr<FullWallet>(); in CreateFullWallet()
[all …]
Dfull_wallet_unittest.cc386 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
391 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
396 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
401 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
406 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
411 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
423 FullWallet full_wallet(-1, in TEST_F()
430 EXPECT_EQ(full_wallet, *FullWallet::CreateFullWallet(*dict)); in TEST_F()
434 FullWallet different_required_actions(-1, in TEST_F()
446 EXPECT_EQ(NULL, FullWallet::CreateFullWallet(*dict).get()); in TEST_F()
[all …]
Dfull_wallet.h35 class FullWallet {
37 ~FullWallet();
41 static scoped_ptr<FullWallet>
46 static scoped_ptr<FullWallet>
69 bool operator==(const FullWallet& other) const;
70 bool operator!=(const FullWallet& other) const;
91 friend scoped_ptr<FullWallet> GetTestFullWalletWithRequiredActions(
93 friend scoped_ptr<FullWallet> GetTestFullWalletInstrumentOnly();
100 FullWallet(int expiration_month,
146 DISALLOW_COPY_AND_ASSIGN(FullWallet);
Dwallet_test_util.h17 class FullWallet; variable
26 scoped_ptr<FullWallet> GetTestFullWallet();
27 scoped_ptr<FullWallet> GetTestFullWalletWithRequiredActions(
29 scoped_ptr<FullWallet> GetTestFullWalletInstrumentOnly();
Dwallet_test_util.cc105 scoped_ptr<FullWallet> GetTestFullWallet() { in GetTestFullWallet()
109 scoped_ptr<FullWallet> GetTestFullWalletWithRequiredActions( in GetTestFullWalletWithRequiredActions()
111 scoped_ptr<FullWallet> wallet(new FullWallet(FutureYear(), in GetTestFullWalletWithRequiredActions()
124 scoped_ptr<FullWallet> GetTestFullWalletInstrumentOnly() { in GetTestFullWalletInstrumentOnly()
125 scoped_ptr<FullWallet> wallet(new FullWallet(FutureYear(), in GetTestFullWalletInstrumentOnly()
Dwallet_client_delegate.h20 class FullWallet; variable
58 virtual void OnDidGetFullWallet(scoped_ptr<FullWallet> full_wallet) = 0;
Dwallet_client.h34 class FullWallet; variable
Dwallet_client.cc661 scoped_ptr<FullWallet> full_wallet( in OnURLFetchComplete()
662 FullWallet::CreateFullWallet(*response_dict)); in OnURLFetchComplete()
Dwallet_client_unittest.cc726 virtual void OnDidGetFullWallet(scoped_ptr<FullWallet> full_wallet) OVERRIDE { in OnDidGetFullWallet()
/external/chromium_org/chrome/browser/ui/autofill/
Ddata_model_wrapper.h37 class FullWallet; variable
195 explicit FullWalletBillingWrapper(wallet::FullWallet* full_wallet);
204 wallet::FullWallet* full_wallet_;
212 explicit FullWalletShippingWrapper(wallet::FullWallet* full_wallet);
219 wallet::FullWallet* full_wallet_;
Ddata_model_wrapper.cc325 wallet::FullWallet* full_wallet) in FullWalletBillingWrapper()
357 wallet::FullWallet* full_wallet) in FullWalletShippingWrapper()
Dautofill_dialog_controller_impl.h196 scoped_ptr<wallet::FullWallet> full_wallet) OVERRIDE;
678 scoped_ptr<wallet::FullWallet> full_wallet_;
Dautofill_dialog_controller_impl.cc2587 scoped_ptr<wallet::FullWallet> full_wallet) { in OnDidGetFullWallet()
/external/chromium_org/chrome/browser/ui/android/autofill/
Dautofill_dialog_result.h16 class FullWallet; variable
29 static scoped_ptr<wallet::FullWallet> ConvertFromJava(
Dautofill_dialog_result.cc86 scoped_ptr<wallet::FullWallet> ParseJavaWallet(JNIEnv* env, jobject wallet) { in ParseJavaWallet()
103 return wallet::FullWallet::CreateFullWalletFromClearText( in ParseJavaWallet()
126 scoped_ptr<wallet::FullWallet> AutofillDialogResult::ConvertFromJava( in ConvertFromJava()
Dautofill_dialog_controller_android.cc49 using wallet::FullWallet;
103 FullWallet* full_wallet, in FillOutputForSectionWithComparator()
111 base::Bind(&FullWallet::GetInfo, in FillOutputForSectionWithComparator()
129 FullWallet* full_wallet, in FillOutputForSection()
466 scoped_ptr<FullWallet> full_wallet = in DialogContinue()