OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_SYNC_TEST_INTEGRATION_AUTOFILL_HELPER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_TEST_INTEGRATION_AUTOFILL_HELPER_H_ |
6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_AUTOFILL_HELPER_H_ | 6 #define CHROME_BROWSER_SYNC_TEST_INTEGRATION_AUTOFILL_HELPER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <set> | 8 #include <set> |
10 #include <string> | 9 #include <string> |
11 #include <vector> | 10 #include <vector> |
12 | 11 |
13 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
14 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
15 #include "base/string16.h" | 14 #include "base/string16.h" |
16 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" | 15 #include "chrome/browser/sync/test/integration/sync_datatype_helper.h" |
17 | 16 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 // Compares the autofill profiles for all sync profiles, and returns true if | 91 // Compares the autofill profiles for all sync profiles, and returns true if |
93 // they all match. | 92 // they all match. |
94 bool AllProfilesMatch() WARN_UNUSED_RESULT; | 93 bool AllProfilesMatch() WARN_UNUSED_RESULT; |
95 | 94 |
96 // Creates a test autofill profile based on the persona specified in |type|. | 95 // Creates a test autofill profile based on the persona specified in |type|. |
97 AutofillProfile CreateAutofillProfile(ProfileType type); | 96 AutofillProfile CreateAutofillProfile(ProfileType type); |
98 | 97 |
99 } // namespace autofill_helper | 98 } // namespace autofill_helper |
100 | 99 |
101 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_AUTOFILL_HELPER_H_ | 100 #endif // CHROME_BROWSER_SYNC_TEST_INTEGRATION_AUTOFILL_HELPER_H_ |
OLD | NEW |