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

1 2 3 4 5 6 7 8 91011>>

  /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_service_url_unittest.cc 6 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
12 namespace wallet { namespace in namespace:autofill
18 EXPECT_EQ("https://wallet-web.sandbox.google.com/online/v2/u/1/wallet/"
21 EXPECT_EQ("https://wallet-web.sandbox.google.com/online-secure/v2/u/1/"
24 EXPECT_EQ("https://wallet-web.sandbox.google.com/manage/w/1/paymentMethods",
26 EXPECT_EQ("https://wallet-web.sandbox.google.com/manage/w/1/settings/"
29 EXPECT_EQ("https://wallet-web.sandbox.google.com/online/v2/u/1/wallet/"
32 EXPECT_EQ("https://wallet-web.sandbox.google.com/online-secure/v2/u/2/
    [all...]
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
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
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_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"
21 namespace wallet { namespace in namespace:autofill
99 scoped_ptr<FullWallet> wallet(new FullWallet(FutureYear(),
108 wallet->set_one_time_pad(one_time_pad);
109 return wallet.Pass()
    [all...]
wallet_address.cc 5 #include "components/autofill/content/browser/wallet/wallet_address.h"
18 namespace wallet { namespace in namespace:autofill
30 DLOG(ERROR) << "Response from Google Wallet missing country name";
37 DLOG(ERROR) << "Response from Google Wallet missing recipient name";
44 DLOG(ERROR) << "Response from Google Wallet missing postal code number";
50 DVLOG(1) << "Response from Google Wallet missing phone number";
57 DVLOG(1) << "Response from Google Wallet missing address line 1";
59 DVLOG(1) << "Response from Google Wallet missing address line 2";
61 DVLOG(1) << "Response from Google Wallet missing address lines";
67 DVLOG(1) << "Response from Google Wallet missing locality name"
    [all...]
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
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
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_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
79 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl(0).spec(),
86 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl(0).spec(),
93 SetUpFetcherResponseAndCompleteRequest(wallet::GetPassiveAuthUrl(0).spec(),
168 } // namespace wallet
  /external/chromium_org/chrome/browser/ui/android/autofill/
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_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);
  /frameworks/base/docs/html/google/play-services/
wallet.jd 1 page.title=Google Wallet Instant Buy for Android
2 page.tags="Wallet","payments","Instant Buy"
9 <h1 itemprop="name" style="margin-bottom:0;">Google Wallet Instant Buy</h1>
12 payments infrastructure and integrate Google Wallet quickly, easily and free of charge.</p>
20 href="{@docRoot}reference/com/google/android/gms/wallet/package-summary.html">Instant
22 <a href="https://developers.google.com/wallet/instant-buy/">developers.google.com/wallet/instant-buy/</a>
23 for complete information about integrating Google Wallet Instant Buy into your app.</p>
27 <img src="{@docRoot}images/google/gps-wallet-instant.png" alt="" style="padding-bottom:14px;width:210px">
40 <a href="https://developers.google.com/commerce/wallet/instant-buy/android/tutorial#add_google_wallet_buttons_to_your_ui
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
google_wallet.html 1 <h1>Google Wallet for Digital Goods</h1>
6 <td>Use Google Wallet for digital goods to sell digital and virtual goods within a Chrome app.</td>
19 <a href="https://support.google.com/chrome_webstore/answer/1053354">Google Wallet</a><br>
20 <a href="https://developers.google.com/commerce/wallet/digital/docs/">Google Wallet for Digital Goods</a><br>
28 You can use Google Wallet for digital goods to sell digital and virtual goods within your app.
29 The Google Wallet for digital goods client app, which is embedded in Chrome, communicates with the
30 <a href="https://support.google.com/chrome_webstore/answer/1053354">Google Wallet</a>
32 Google Wallet for digital goods requires you to package a JavaScript file,
40 When a customer clicks a "Buy" button in your app to make a purchase, Google Wallet for digital goods displays a payment processing windo
    [all...]
  /external/chromium_org/components/autofill/core/common/
autofill_switches.cc 42 // Secure service URL for Online Wallet service. Used as the base url to escrow
44 const char kWalletSecureServiceUrl[] = "wallet-secure-service-url";
46 // Service URL for Online Wallet service. Used as the base url for Online Wallet
48 const char kWalletServiceUrl[] = "wallet-service-url";
50 // Use the sandbox Online Wallet service URL (for developer testing).
51 const char kWalletServiceUseSandbox[] = "wallet-service-use-sandbox";
  /device/asus/grouper/
nfcee_access_debug.xml 8 <!-- Google Wallet dev signature -->
11 <!-- Google wallet release signature -->
nfcee_access.xml 8 <!-- Google wallet release signature -->
  /device/lge/mako/nfc/
nfcee_access_debug.xml 8 <!-- Google Wallet dev signature -->
11 <!-- Google wallet release signature -->
nfcee_access.xml 8 <!-- Google wallet release signature -->
  /device/samsung/manta/nfc/
nfcee_access_debug.xml 8 <!-- Google Wallet dev signature -->
11 <!-- Google wallet release signature -->
nfcee_access.xml 8 <!-- Google wallet release signature -->
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_dialog_controller_unittest.cc 31 #include "components/autofill/content/browser/wallet/full_wallet.h"
32 #include "components/autofill/content/browser/wallet/gaia_account.h"
33 #include "components/autofill/content/browser/wallet/instrument.h"
34 #include "components/autofill/content/browser/wallet/mock_wallet_client.h"
35 #include "components/autofill/content/browser/wallet/wallet_address.h"
36 #include "components/autofill/content/browser/wallet/wallet_service_url.h"
37 #include "components/autofill/content/browser/wallet/wallet_test_util.h"
103 scoped_ptr<wallet::WalletItems> CompleteAndValidWalletItems() {
104 scoped_ptr<wallet::WalletItems> items =
105 wallet::GetTestWalletItems(wallet::AMEX_DISALLOWED)
    [all...]
account_chooser_model.h 44 // Online Wallet accounts and local Autofill data.
46 // - "Active Wallet account": the account used for communications with the
47 // Online Wallet service. There may be multiple signed-in accounts, but at any
72 // Sets the selection to the given wallet account.
81 // Sets the name of the accounts used to communicate with the Online Wallet
86 // Clears the set of accounts used to communicate with the Online Wallet.
87 // Any Wallet error automatically clears the currently active account name.
92 // will be the most recently checked wallet account item.
98 // Disables all Wallet accounts and switches to the local Autofill data.
99 // Should be called when the Wallet server returns an error
    [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())->SetPhoneNumber
    [all...]

Completed in 137 milliseconds

1 2 3 4 5 6 7 8 91011>>