blob: 0cbcfa3d6b79c6db3f0f932ab0e3b64664898e9f [file] [log] [blame]
bondd10a45b92015-02-04 23:29:401// Copyright 2015 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 CHROME_BROWSER_AUTOFILL_AUTOFILL_UITEST_UTIL_H_
6#define CHROME_BROWSER_AUTOFILL_AUTOFILL_UITEST_UTIL_H_
7
8#include <vector>
9
10class Browser;
11
12namespace autofill {
13
14class AutofillProfile;
sebsge35b762c2018-03-29 20:33:2715class CreditCard;
bondd10a45b92015-02-04 23:29:4016
17void AddTestProfile(Browser* browser, const AutofillProfile& profile);
18void SetTestProfile(Browser* browser, const AutofillProfile& profile);
19void SetTestProfiles(Browser* browser, std::vector<AutofillProfile>* profiles);
Lambros Lambrou22387fe12018-06-06 00:01:2820
sebsge35b762c2018-03-29 20:33:2721void AddTestCreditCard(Browser* browser, const CreditCard& card);
Lambros Lambrou22387fe12018-06-06 00:01:2822
bondd10a45b92015-02-04 23:29:4023} // namespace autofill
24
25#endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_UITEST_UTIL_H_