HomeSort by relevance Sort by last modified time
    Searched refs:wallet (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/components/autofill/content/browser/wallet/
mock_wallet_client.cc 5 #include "components/autofill/content/browser/wallet/mock_wallet_client.h"
8 namespace wallet { namespace in namespace:autofill
11 wallet::WalletClientDelegate* delegate)
12 : wallet::WalletClient(context, delegate) {}
16 } // namespace wallet
required_action.h 11 namespace wallet { namespace in namespace:autofill
15 // use Google Wallet (happens on first use or when the ToS are updated) or
41 } // namespace wallet
wallet_signin_helper_delegate.h 13 namespace wallet { namespace in namespace:autofill
36 // Called when the Google Wallet cookie value has been retrieved.
40 } // namespace wallet
wallet_service_url.h 11 namespace wallet { namespace in namespace:autofill
35 // Whether calls to Online Wallet are hitting the production server rather than
39 } // namespace wallet
mock_wallet_client.h 11 #include "components/autofill/content/browser/wallet/instrument.h"
12 #include "components/autofill/content/browser/wallet/wallet_address.h"
13 #include "components/autofill/content/browser/wallet/wallet_client.h"
17 namespace wallet { namespace in namespace:autofill
43 virtual void SaveToWallet(scoped_ptr<wallet::Instrument> instrument,
44 scoped_ptr<wallet::Address> address,
64 } // namespace wallet
form_field_error.h 16 namespace wallet { namespace in namespace:autofill
18 // Class for representing a single Wallet server side validation error.
30 // Wallet sends this when ZIP is invalid for the given city.
33 // invalid card number. Wallet should only send us this error for invalid
36 // Wallet sends this when ZIP is invalid for the given state.
76 // The type of error as defined by the Wallet server.
79 // The location of the error as defined by the Wallet server.
85 } // namespace wallet
wallet_client_delegate.h 11 #include "components/autofill/content/browser/wallet/form_field_error.h"
12 #include "components/autofill/content/browser/wallet/wallet_client.h"
18 namespace wallet { namespace in namespace:autofill
25 // WalletClientDelegate with the response from the Online Wallet backend.
33 // Wallet metrics.
43 // Wallet.
50 // Callbacks called with responses from the Online Wallet backend.
85 } // namespace wallet
wallet_test_util.cc 5 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
14 #include "components/autofill/content/browser/wallet/full_wallet.h"
15 #include "components/autofill/content/browser/wallet/instrument.h"
16 #include "components/autofill/content/browser/wallet/required_action.h"
17 #include "components/autofill/content/browser/wallet/wallet_address.h"
20 namespace wallet { namespace in namespace:autofill
86 scoped_ptr<FullWallet> wallet(new FullWallet(FutureYear(),
95 wallet->set_one_time_pad(one_time_pad);
96 return wallet.Pass();
100 scoped_ptr<FullWallet> wallet(new FullWallet(FutureYear()
    [all...]
instrument_unittest.cc 7 #include "components/autofill/content/browser/wallet/instrument.h"
8 #include "components/autofill/content/browser/wallet/wallet_address.h"
9 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
21 namespace wallet { namespace in namespace:autofill
65 } // namespace wallet
required_action.cc 5 #include "components/autofill/content/browser/wallet/required_action.h"
11 namespace wallet { namespace in namespace:autofill
65 } // namespace wallet
wallet_service_url_unittest.cc 6 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
12 namespace wallet { namespace in namespace:autofill
15 EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
18 EXPECT_EQ("https://wallet-web.sandbox.google.com/online-secure/v2/"
21 EXPECT_EQ("https://wallet-web.sandbox.google.com/manage/paymentMethods",
23 EXPECT_EQ("https://wallet-web.sandbox.google.com/manage/settings/addresses",
25 EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
28 EXPECT_EQ("https://wallet-web.sandbox.google.com/online-secure/v2/"
31 EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
34 EXPECT_EQ("https://payments-form-dogfood.sandbox.google.com/online/v2/wallet/"
    [all...]
wallet_signin_helper.h 23 namespace wallet { namespace in namespace:autofill
27 // Authenticates the user against the Online Wallet service.
40 // Initiates an attempt to passively sign the user into the Online Wallet.
42 // and it succeeds as long as the Online Wallet service could safely accept
54 // Initiates the fetch of the user's Google Wallet cookie.
89 // Attempts to parse a response from the Online Wallet sign-in.
99 // Callback for when the Google Wallet cookie has been retrieved.
122 } // namespace wallet
wallet_test_util.h 9 #include "components/autofill/content/browser/wallet/wallet_items.h"
12 namespace wallet { namespace in namespace:autofill
40 } // namespace wallet
  /external/chromium_org/chrome/browser/ui/android/autofill/
autofill_dialog_result.h 15 namespace wallet { namespace in namespace:autofill
26 // Converts the requested information to wallet::FullWallet.
28 // regardless if the information was obtained from Autofill or Google Wallet.
29 static scoped_ptr<wallet::FullWallet> ConvertFromJava(
30 JNIEnv* env, jobject wallet);
34 static base::string16 GetWalletEmail(JNIEnv* env, jobject wallet);
38 static std::string GetWalletGoogleTransactionId(JNIEnv* env, jobject wallet);
autofill_dialog_result.cc 15 #include "components/autofill/content/browser/wallet/full_wallet.h"
41 scoped_ptr<wallet::Address> ParseJavaWalletAddress(
44 return scoped_ptr<wallet::Address>();
64 return scoped_ptr<wallet::Address>(new wallet::Address(
76 scoped_ptr<wallet::FullWallet> ParseJavaWallet(JNIEnv* env, jobject wallet) {
78 FETCH_JFIELD(env, wallet, ResultWallet, BillingAddress));
80 FETCH_JFIELD(env, wallet, ResultWallet, ShippingAddress));
82 FETCH_JFIELD(env, wallet, ResultWallet, Card))
    [all...]
autofill_dialog_controller_android.cc 26 #include "components/autofill/content/browser/wallet/full_wallet.h"
60 DialogSection section, wallet::FullWallet* full_wallet) {
82 FormStructure& form_structure, wallet::FullWallet* full_wallet,
85 // Email is hidden while using Wallet, special case it.
102 wallet::FullWallet* full_wallet,
359 jobject wallet,
365 const string16 email = AutofillDialogResult::GetWalletEmail(env, wallet);
367 AutofillDialogResult::GetWalletGoogleTransactionId(env, wallet);
378 scoped_ptr<wallet::FullWallet> full_wallet =
379 AutofillDialogResult::ConvertFromJava(env, wallet);
    [all...]
  /external/chromium_org/components/autofill/content/browser/
autocheckout_request_manager.h 10 #include "components/autofill/content/browser/wallet/wallet_client.h"
11 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h"
31 public wallet::WalletClientDelegate {
45 // Sends the |status| of an Autocheckout flow to Online Wallet using
53 // wallet::WalletClientDelegate:
62 scoped_ptr<wallet::FullWallet> full_wallet) OVERRIDE;
64 scoped_ptr<wallet::WalletItems> wallet_items) OVERRIDE;
68 const std::vector<wallet::RequiredAction>& required_actions,
69 const std::vector<wallet::FormFieldError>& form_field_errors) OVERRIDE;
71 wallet::WalletClient::ErrorType error_type) OVERRIDE
    [all...]
autocheckout_request_manager.cc 82 scoped_ptr<wallet::FullWallet> full_wallet) {
87 scoped_ptr<wallet::WalletItems> wallet_items) {
95 const std::vector<wallet::RequiredAction>& required_actions,
96 const std::vector<wallet::FormFieldError>& form_field_errors) {
101 wallet::WalletClient::ErrorType error_type) {
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_unittest.cc 27 #include "components/autofill/content/browser/wallet/full_wallet.h"
28 #include "components/autofill/content/browser/wallet/instrument.h"
29 #include "components/autofill/content/browser/wallet/mock_wallet_client.h"
30 #include "components/autofill/content/browser/wallet/wallet_address.h"
31 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
32 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
100 scoped_ptr<wallet::WalletItems> CompleteAndValidWalletItems() {
101 scoped_ptr<wallet::WalletItems> items = wallet::GetTestWalletItems();
102 items->AddInstrument(wallet::GetTestMaskedInstrument())
    [all...]
data_model_wrapper.h 11 #include "components/autofill/content/browser/wallet/wallet_items.h"
25 namespace wallet { namespace in namespace:autofill
148 // A DataModelWrapper for Wallet addresses.
151 explicit WalletAddressWrapper(const wallet::Address* address);
159 const wallet::Address* address_;
164 // A DataModelWrapper for Wallet instruments.
168 const wallet::WalletItems::MaskedInstrument* instrument);
177 const wallet::WalletItems::MaskedInstrument* instrument_;
185 explicit FullWalletBillingWrapper(wallet::FullWallet* full_wallet);
193 wallet::FullWallet* full_wallet_
    [all...]
data_model_wrapper_unittest.cc 10 #include "components/autofill/content/browser/wallet/wallet_items.h"
11 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
62 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
63 wallet::GetTestMaskedInstrument());
74 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
75 wallet::GetTestMaskedInstrument());
76 instrument->status_ = wallet::WalletItems::MaskedInstrument::EXPIRED;
83 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
84 wallet::GetTestMaskedInstrument());
93 const_cast<wallet::Address*>(&instrument->address())->set_phone_number
    [all...]
autofill_dialog_controller_impl.h 24 #include "components/autofill/content/browser/wallet/wallet_client.h"
25 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h"
26 #include "components/autofill/content/browser/wallet/wallet_items.h"
27 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h"
65 namespace wallet { namespace in namespace:autofill
77 public wallet::WalletClientDelegate,
78 public wallet::WalletSigninHelperDelegate,
194 // wallet::WalletClientDelegate implementation.
203 scoped_ptr<wallet::FullWallet> full_wallet) OVERRIDE;
205 scoped_ptr<wallet::WalletItems> wallet_items) OVERRIDE
    [all...]
autofill_dialog_common.h 16 namespace wallet { namespace
autofill_dialog_controller_impl.cc 45 #include "components/autofill/content/browser/wallet/form_field_error.h"
46 #include "components/autofill/content/browser/wallet/full_wallet.h"
47 #include "components/autofill/content/browser/wallet/instrument.h"
48 #include "components/autofill/content/browser/wallet/wallet_address.h"
49 #include "components/autofill/content/browser/wallet/wallet_items.h"
50 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
51 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h"
107 // Limit Wallet items refresh rate to at most once per minute.
110 // Returns true if |card_type| is supported by Wallet.
174 // wallet::Instrument requires a recipient name for its billing address
    [all...]
data_model_wrapper.cc 11 #include "components/autofill/content/browser/wallet/full_wallet.h"
12 #include "components/autofill/content/browser/wallet/wallet_address.h"
13 #include "components/autofill/content/browser/wallet/wallet_items.h"
195 const wallet::Address* address) : address_(address) {}
218 const wallet::WalletItems::MaskedInstrument* instrument)
239 if (instrument_->status() == wallet::WalletItems::MaskedInstrument::EXPIRED ||
257 wallet::FullWallet* full_wallet)
280 if (full_wallet_->HasRequiredAction(wallet::UPDATE_EXPIRATION_DATE))
290 wallet::FullWallet* full_wallet)

Completed in 152 milliseconds

1 2 3