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

Side by Side Diff: components/search_engines/search_engines_test_util.h

Issue 2479113002: Make extensions DSE persistent in browser prefs (Closed)
Patch Set: Fixed default extension keywords conflicts problem Created 3 years, 11 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 2016 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(
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 const std::string& extension_id);
33
34 // Removes the extension-controlled default search engine preference from
35 // |prefs|.
36 void RemoveExtensionDefaultSearchFromPrefs(
37 sync_preferences::TestingPrefServiceSyncable* prefs);
38
39 #endif // COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINES_TEST_UTIL_H_
OLDNEW
« no previous file with comments | « components/search_engines/default_search_manager_unittest.cc ('k') | components/search_engines/search_engines_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698