/external/chromium_org/components/autofill/content/browser/wallet/ |
D | full_wallet.cc | 26 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 …]
|
D | full_wallet_unittest.cc | 386 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 …]
|
D | full_wallet.h | 35 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);
|
D | wallet_test_util.h | 17 class FullWallet; variable 26 scoped_ptr<FullWallet> GetTestFullWallet(); 27 scoped_ptr<FullWallet> GetTestFullWalletWithRequiredActions( 29 scoped_ptr<FullWallet> GetTestFullWalletInstrumentOnly();
|
D | wallet_test_util.cc | 105 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()
|
D | wallet_client_delegate.h | 20 class FullWallet; variable 58 virtual void OnDidGetFullWallet(scoped_ptr<FullWallet> full_wallet) = 0;
|
D | wallet_client.h | 34 class FullWallet; variable
|
D | wallet_client.cc | 661 scoped_ptr<FullWallet> full_wallet( in OnURLFetchComplete() 662 FullWallet::CreateFullWallet(*response_dict)); in OnURLFetchComplete()
|
D | wallet_client_unittest.cc | 726 virtual void OnDidGetFullWallet(scoped_ptr<FullWallet> full_wallet) OVERRIDE { in OnDidGetFullWallet()
|
/external/chromium_org/chrome/browser/ui/autofill/ |
D | data_model_wrapper.h | 37 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_;
|
D | data_model_wrapper.cc | 325 wallet::FullWallet* full_wallet) in FullWalletBillingWrapper() 357 wallet::FullWallet* full_wallet) in FullWalletShippingWrapper()
|
D | autofill_dialog_controller_impl.h | 196 scoped_ptr<wallet::FullWallet> full_wallet) OVERRIDE; 678 scoped_ptr<wallet::FullWallet> full_wallet_;
|
D | autofill_dialog_controller_impl.cc | 2587 scoped_ptr<wallet::FullWallet> full_wallet) { in OnDidGetFullWallet()
|
/external/chromium_org/chrome/browser/ui/android/autofill/ |
D | autofill_dialog_result.h | 16 class FullWallet; variable 29 static scoped_ptr<wallet::FullWallet> ConvertFromJava(
|
D | autofill_dialog_result.cc | 86 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()
|
D | autofill_dialog_controller_android.cc | 49 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()
|