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

1 2 3

  /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 16 #include "components/autofill/content/browser/wallet/full_wallet.h"
42 scoped_ptr<wallet::Address> ParseJavaWalletAddress(
45 return scoped_ptr<wallet::Address>();
73 return scoped_ptr<wallet::Address>(new wallet::Address(
87 scoped_ptr<wallet::FullWallet> ParseJavaWallet(JNIEnv* env, jobject wallet) {
89 FETCH_JFIELD(env, wallet, ResultWallet, BillingAddress));
91 FETCH_JFIELD(env, wallet, ResultWallet, ShippingAddress));
93 FETCH_JFIELD(env, wallet, ResultWallet, Card))
    [all...]
  /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,
13 : wallet::WalletClient(context, delegate, source_url) {}
28 } // namespace wallet
wallet_signin_helper_delegate.h 14 namespace wallet { namespace in namespace:autofill
28 // Called when the Google Wallet cookie value has been retrieved.
32 } // 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
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.
40 // Wallet.
47 // Callbacks called with responses from the Online Wallet backend.
82 } // namespace wallet
wallet_signin_helper.h 24 namespace wallet { namespace in namespace:autofill
28 // Authenticates the user against the Online Wallet service.
41 // Initiates an attempt to passively sign the user into the Online Wallet.
43 // and it succeeds as long as the Online Wallet service could safely accept
50 // Initiates the fetch of the user's Google Wallet cookie.
63 // Callback for when the Google Wallet cookie has been retrieved.
80 } // 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/gaia_account.h"
16 #include "components/autofill/content/browser/wallet/instrument.h"
17 #include "components/autofill/content/browser/wallet/required_action.h"
18 #include "components/autofill/content/browser/wallet/wallet_address.h"
23 namespace wallet { namespace in namespace:autofill
111 scoped_ptr<FullWallet> wallet(new FullWallet(FutureYear(),
120 wallet->set_one_time_pad(one_time_pad);
121 return wallet.Pass()
    [all...]
gaia_account.h 17 namespace wallet { namespace in namespace:autofill
56 } // 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"
14 #include "components/autofill/content/browser/wallet/wallet_items.h"
18 namespace wallet { namespace in namespace:autofill
60 } // namespace wallet
required_action.cc 5 #include "components/autofill/content/browser/wallet/required_action.h"
11 namespace wallet { namespace in namespace:autofill
66 } // namespace wallet
wallet_service_url.h 13 namespace wallet { namespace in namespace:autofill
45 // Whether calls to Online Wallet are hitting the production server rather than
49 } // namespace wallet
wallet_signin_helper.cc 5 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h"
15 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
16 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h"
29 namespace wallet { namespace in namespace:autofill
35 // Callback for retrieving Google Wallet cookies. |callback| is passed the
37 // Wallet cookies.
45 std::string host = wallet::GetPassiveAuthUrl(0).host();
59 // Gets Google Wallet cookies. Must be called on the IO thread.
83 wallet::GetPassiveAuthUrl(0).GetWithEmptyPath(),
105 const GURL& url = wallet::GetPassiveAuthUrl(user_index)
    [all...]
wallet_signin_helper_unittest.cc 5 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h"
12 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
13 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h"
35 namespace wallet { namespace in namespace:autofill
85 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl(0).spec(),
92 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl(0).spec(),
99 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl(0).spec(),
178 } // namespace wallet
gaia_account.cc 5 #include "components/autofill/content/browser/wallet/gaia_account.h"
12 namespace wallet { namespace in namespace:autofill
83 } // namespace wallet
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_unittest.cc 36 #include "components/autofill/content/browser/wallet/full_wallet.h"
37 #include "components/autofill/content/browser/wallet/gaia_account.h"
38 #include "components/autofill/content/browser/wallet/instrument.h"
39 #include "components/autofill/content/browser/wallet/mock_wallet_client.h"
40 #include "components/autofill/content/browser/wallet/wallet_address.h"
41 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
42 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
126 scoped_ptr<wallet::WalletItems> CompleteAndValidWalletItems() {
127 scoped_ptr<wallet::WalletItems> items =
128 wallet::GetTestWalletItems(wallet::AMEX_DISALLOWED)
    [all...]
data_model_wrapper.h 13 #include "components/autofill/content/browser/wallet/wallet_items.h"
35 namespace wallet { namespace in namespace:autofill
152 // A DataModelWrapper for Wallet addresses.
155 explicit WalletAddressWrapper(const wallet::Address* address);
166 const wallet::Address* address_;
171 // A DataModelWrapper for Wallet instruments.
175 const wallet::WalletItems::MaskedInstrument* instrument);
187 const wallet::WalletItems::MaskedInstrument* instrument_;
195 explicit FullWalletBillingWrapper(wallet::FullWallet* full_wallet);
204 wallet::FullWallet* full_wallet_
    [all...]
data_model_wrapper_unittest.cc 11 #include "components/autofill/content/browser/wallet/wallet_items.h"
12 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
65 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
66 wallet::GetTestMaskedInstrument());
67 instrument->status_ = wallet::WalletItems::MaskedInstrument::EXPIRED;
74 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
75 wallet::GetTestMaskedInstrument());
84 const_cast<wallet::Address*>(&instrument->address())->SetPhoneNumber(
158 scoped_ptr<wallet::WalletItems::MaskedInstrument> instrument(
159 wallet::GetTestMaskedInstrument())
    [all...]
autofill_dialog_common.h 16 namespace wallet { namespace
autofill_dialog_controller_impl.h 23 #include "components/autofill/content/browser/wallet/wallet_client.h"
24 #include "components/autofill/content/browser/wallet/wallet_client_delegate.h"
25 #include "components/autofill/content/browser/wallet/wallet_items.h"
26 #include "components/autofill/content/browser/wallet/wallet_signin_helper_delegate.h"
64 namespace wallet { namespace in namespace:autofill
77 public wallet::WalletClientDelegate,
78 public wallet::WalletSigninHelperDelegate,
183 // wallet::WalletClientDelegate implementation.
191 scoped_ptr<wallet::FullWallet> full_wallet) OVERRIDE;
193 scoped_ptr<wallet::WalletItems> wallet_items) OVERRIDE
    [all...]
autofill_dialog_controller_impl.cc 49 #include "components/autofill/content/browser/wallet/form_field_error.h"
50 #include "components/autofill/content/browser/wallet/full_wallet.h"
51 #include "components/autofill/content/browser/wallet/gaia_account.h"
52 #include "components/autofill/content/browser/wallet/instrument.h"
53 #include "components/autofill/content/browser/wallet/wallet_address.h"
54 #include "components/autofill/content/browser/wallet/wallet_items.h"
55 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
56 #include "components/autofill/content/browser/wallet/wallet_signin_helper.h"
113 // URLs for Wallet error messages.
115 "https://wallet.google.com/manage/settings"
    [all...]
autofill_dialog_controller_browsertest.cc 34 #include "components/autofill/content/browser/wallet/gaia_account.h"
35 #include "components/autofill/content/browser/wallet/mock_wallet_client.h"
36 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
37 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
221 wallet::MockWalletClient* GetTestingWalletClient() {
238 virtual wallet::WalletClient* GetWalletClient() OVERRIDE {
245 return url == wallet::GetSignInContinueUrl();
257 testing::NiceMock<wallet::MockWalletClient> mock_wallet_client_;
    [all...]
data_model_wrapper.cc 14 #include "components/autofill/content/browser/wallet/full_wallet.h"
15 #include "components/autofill/content/browser/wallet/wallet_address.h"
16 #include "components/autofill/content/browser/wallet/wallet_items.h"
226 const wallet::Address* address) : address_(address) {}
263 const wallet::WalletItems::MaskedInstrument* instrument)
296 if (instrument_->status() == wallet::WalletItems::MaskedInstrument::EXPIRED ||
322 wallet::FullWallet* full_wallet)
338 if (full_wallet_->HasRequiredAction(wallet::UPDATE_EXPIRATION_DATE))
354 wallet::FullWallet* full_wallet)
autofill_dialog_sign_in_delegate.cc 10 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
31 return !IsInPageTransition(params) || !wallet::IsSignInRelatedUrl(params.url);
37 if (!IsInPageTransition(params) || wallet::IsSignInRelatedUrl(params.url))

Completed in 359 milliseconds

1 2 3