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

1 2

  /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);
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_common.h 16 namespace wallet { namespace
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...]
  /external/chromium_org/components/autofill/content/browser/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
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
wallet_test_util.h 9 #include "components/autofill/content/browser/wallet/wallet_items.h"
12 namespace wallet { namespace in namespace:autofill
40 } // namespace 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
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_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_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
instrument.cc 5 #include "components/autofill/content/browser/wallet/instrument.h"
12 #include "components/autofill/content/browser/wallet/wallet_address.h"
19 namespace wallet { namespace in namespace:autofill
124 } // namespace wallet
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
form_field_error.cc 5 #include "components/autofill/content/browser/wallet/form_field_error.h"
13 namespace wallet { namespace in namespace:autofill
153 } // 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
full_wallet_unittest.cc 11 #include "components/autofill/content/browser/wallet/full_wallet.h"
12 #include "components/autofill/content/browser/wallet/required_action.h"
13 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
351 namespace wallet { namespace in namespace:autofill
529 } // namespace wallet
wallet_address_unittest.cc 10 #include "components/autofill/content/browser/wallet/wallet_address.h"
158 namespace wallet { namespace in namespace:autofill
477 } // namespace wallet
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
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
full_wallet.h 15 #include "components/autofill/content/browser/wallet/required_action.h"
16 #include "components/autofill/content/browser/wallet/wallet_address.h"
26 namespace wallet { namespace in namespace:autofill
34 // - a proxy card for the backing card selected from a user's wallet items
39 // Returns an empty scoped_ptr if the input invalid, an empty wallet with
40 // required actions if there are any, or a valid wallet.
44 // Returns a wallet built from the provided clear-text data.
138 // issued to them by the Online Wallet service.
147 } // namespace wallet
wallet_items_unittest.cc 10 #include "components/autofill/content/browser/wallet/required_action.h"
11 #include "components/autofill/content/browser/wallet/wallet_items.h"
363 namespace wallet { namespace in namespace:autofill
460 EXPECT_EQ("https://wallet.google.com/legaldocument?docId=doc_id",
569 } // namespace wallet
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"
33 namespace wallet { namespace in namespace:autofill
131 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl().spec(),
138 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl().spec(),
145 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl().spec(),
244 } // 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...]
full_wallet.cc 5 #include "components/autofill/content/browser/wallet/full_wallet.h"
24 namespace wallet { namespace in namespace:autofill
56 DLOG(ERROR) << "Response from Google wallet with bad required action:"
73 DVLOG(1) << "Response from Google wallet missing required actions";
78 DLOG(ERROR) << "Response from Google wallet missing expiration month";
84 DLOG(ERROR) << "Response from Google wallet missing expiration year";
90 DLOG(ERROR) << "Response from Google wallet missing iin";
96 DLOG(ERROR) << "Response from Google wallet missing rest";
102 DLOG(ERROR) << "Response from Google wallet missing billing address";
109 DLOG(ERROR) << "Response from Google wallet has malformed billing address"
    [all...]
instrument.h 22 namespace wallet { namespace in namespace:autofill
27 // user's Google Wallet using WalletClient::SaveInstrument or
96 // Externalized Online Wallet id for this instrument.
102 } // namespace wallet

Completed in 1016 milliseconds

1 2