| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_TEST_UTIL_H_ | |
| 6 #define COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_TEST_UTIL_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 #include <vector> | |
| 10 | |
| 11 #include "base/strings/string16.h" | |
| 12 | |
| 13 namespace autofill { | |
| 14 namespace wallet { | |
| 15 | |
| 16 class Address; | |
| 17 class FullWallet; | |
| 18 | |
| 19 std::vector<base::string16> StreetAddress(const std::string& line1, | |
| 20 const std::string& line2); | |
| 21 std::unique_ptr<Address> GetTestAddress(); | |
| 22 std::unique_ptr<Address> GetTestMinimalAddress(); | |
| 23 std::unique_ptr<FullWallet> GetTestFullWallet(); | |
| 24 std::unique_ptr<FullWallet> GetTestFullWalletInstrumentOnly(); | |
| 25 std::unique_ptr<Address> GetTestSaveableAddress(); | |
| 26 std::unique_ptr<Address> GetTestShippingAddress(); | |
| 27 std::unique_ptr<Address> GetTestNonDefaultShippingAddress(); | |
| 28 | |
| 29 } // namespace wallet | |
| 30 } // namespace autofill | |
| 31 | |
| 32 #endif // COMPONENTS_AUTOFILL_CONTENT_BROWSER_WALLET_WALLET_TEST_UTIL_H_ | |
| OLD | NEW |