OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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_SEARCH_ENGINES_SEARCH_ENGINES_TEST_UTIL_H_ | |
6 #define COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINES_TEST_UTIL_H_ | |
7 | |
8 #include <memory> | |
9 #include <string> | |
10 | |
11 struct TemplateURLData; | |
12 | |
13 namespace sync_preferences { | |
14 class TestingPrefServiceSyncable; | |
15 } | |
16 | |
17 // Generates a TemplateURLData structure useful for tests filled with values | |
18 // autogenerated from |provider_name|. | |
19 std::unique_ptr<TemplateURLData> GenerateDummyTemplateURLData( | |
Peter Kasting
2017/02/07 00:42:45
Are you going to eliminate the identically-named f
Alexander Yashkin
2017/02/07 08:09:20
Created https://codereview.chromium.org/2686453002
| |
20 const std::string& provider_name); | |
21 | |
22 // Checks that the two TemplateURLs are similar. Does not check the id, the | |
23 // date_created or the last_modified time. Neither pointer should be null. | |
24 void ExpectSimilar(const TemplateURLData* expected, | |
25 const TemplateURLData* actual); | |
26 | |
27 // Writes default search engine |extension_data| into the extension-controlled | |
28 // preference in |prefs|. | |
29 void SetExtensionDefaultSearchInPrefs( | |
30 sync_preferences::TestingPrefServiceSyncable* prefs, | |
31 const TemplateURLData& extension_data); | |
32 | |
33 // Removes the extension-controlled default search engine preference from | |
34 // |prefs|. | |
35 void RemoveExtensionDefaultSearchFromPrefs( | |
36 sync_preferences::TestingPrefServiceSyncable* prefs); | |
37 | |
38 #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINES_TEST_UTIL_H_ | |
OLD | NEW |