Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: components/autofill/content/browser/wallet/wallet_test_util.h

Issue 1931043002: Remove requestAutocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698