OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/autofill/content/browser/wallet/wallet_test_util.h" | 5 #include "components/autofill/content/browser/wallet/wallet_test_util.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "base/time.h" | 12 #include "base/time/time.h" |
13 #include "base/values.h" | 13 #include "base/values.h" |
14 #include "components/autofill/content/browser/wallet/full_wallet.h" | 14 #include "components/autofill/content/browser/wallet/full_wallet.h" |
15 #include "components/autofill/content/browser/wallet/instrument.h" | 15 #include "components/autofill/content/browser/wallet/instrument.h" |
16 #include "components/autofill/content/browser/wallet/required_action.h" | 16 #include "components/autofill/content/browser/wallet/required_action.h" |
17 #include "components/autofill/content/browser/wallet/wallet_address.h" | 17 #include "components/autofill/content/browser/wallet/wallet_address.h" |
18 | 18 |
19 namespace autofill { | 19 namespace autofill { |
20 namespace wallet { | 20 namespace wallet { |
21 | 21 |
22 namespace { | 22 namespace { |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 return scoped_ptr<WalletItems>( | 179 return scoped_ptr<WalletItems>( |
180 new wallet::WalletItems(std::vector<RequiredAction>(), | 180 new wallet::WalletItems(std::vector<RequiredAction>(), |
181 "google_transaction_id", | 181 "google_transaction_id", |
182 "default_instrument_id", | 182 "default_instrument_id", |
183 "default_address_id", | 183 "default_address_id", |
184 "obfuscated_gaia_id")); | 184 "obfuscated_gaia_id")); |
185 } | 185 } |
186 | 186 |
187 } // namespace wallet | 187 } // namespace wallet |
188 } // namespace autofill | 188 } // namespace autofill |
OLD | NEW |