OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #ifndef CHROME_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_ |
6 #define CHROME_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/string16.h" | 14 #include "base/string16.h" |
15 #include "chrome/test/live_sync/sync_datatype_helper.h" | 15 #include "chrome/browser/sync/test/live_sync/sync_datatype_helper.h" |
16 | 16 |
17 class AutofillEntry; | 17 class AutofillEntry; |
18 class AutofillKey; | 18 class AutofillKey; |
19 class AutofillProfile; | 19 class AutofillProfile; |
20 class AutofillType; | 20 class AutofillType; |
21 class PersonalDataManager; | 21 class PersonalDataManager; |
22 class WebDataService; | 22 class WebDataService; |
23 | 23 |
24 namespace autofill_helper { | 24 namespace autofill_helper { |
25 | 25 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 | 87 |
88 // Compares the autofill profiles for all sync profiles, and returns true if | 88 // Compares the autofill profiles for all sync profiles, and returns true if |
89 // they all match. | 89 // they all match. |
90 bool AllProfilesMatch() WARN_UNUSED_RESULT; | 90 bool AllProfilesMatch() WARN_UNUSED_RESULT; |
91 | 91 |
92 // Creates a test autofill profile based on the persona specified in |type|. | 92 // Creates a test autofill profile based on the persona specified in |type|. |
93 AutofillProfile CreateAutofillProfile(ProfileType type); | 93 AutofillProfile CreateAutofillProfile(ProfileType type); |
94 | 94 |
95 } // namespace autofill_helper | 95 } // namespace autofill_helper |
96 | 96 |
97 #endif // CHROME_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_ | 97 #endif // CHROME_BROWSER_SYNC_TEST_LIVE_SYNC_AUTOFILL_HELPER_H_ |
OLD | NEW |