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

Unified Diff: chrome/browser/search_engines/template_url_service_test_util.h

Issue 2479113002: Make extensions DSE persistent in browser prefs (Closed)
Patch Set: Updated after review, round 6 Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/search_engines/template_url_service_test_util.h
diff --git a/chrome/browser/search_engines/template_url_service_test_util.h b/chrome/browser/search_engines/template_url_service_test_util.h
index 566fb9215b536f1128a7ca0eb5b14ec9713568fa..bda85fc7903d8c552d6e3358b216f2304e5e094b 100644
--- a/chrome/browser/search_engines/template_url_service_test_util.h
+++ b/chrome/browser/search_engines/template_url_service_test_util.h
@@ -12,6 +12,7 @@
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/strings/string16.h"
+#include "components/search_engines/template_url.h"
#include "components/search_engines/template_url_data.h"
#include "components/search_engines/template_url_service_observer.h"
@@ -65,6 +66,22 @@ class TemplateURLServiceTestUtil : public TemplateURLServiceObserver {
// Sets the google base url. |base_url| must be valid.
void SetGoogleBaseURL(const GURL& base_url);
+ // Write default search engine into extension controlled preference in test
Peter Kasting 2016/12/22 20:49:03 Nit: Function comments should be declarative ("wri
Alexander Yashkin 2016/12/23 19:44:08 Done
+ // profile.
+ void SetExtensionDefaultSearchInPrefs(const std::string& ext_id,
Peter Kasting 2016/12/22 20:49:03 This first arg is not actually used in the impleme
Alexander Yashkin 2016/12/23 19:44:08 This remains from previous approach, removed.
+ const TemplateURLData& ext_data);
Peter Kasting 2016/12/22 20:49:03 Nit: Avoid abbreviations like "ext" (could read as
Alexander Yashkin 2016/12/23 19:44:08 Done, replaced with "extension_" or removed.
+ // Remove extension controlled default search engine preference from test
Peter Kasting 2016/12/22 20:49:03 Nit: I'd still put a blink line above this comment
Alexander Yashkin 2016/12/23 19:44:08 Done
+ // profile.
+ void RemoveExtensionDefaultSearchFromPrefs(const std::string& ext_id);
+
+ // Add extension turl to model and override default search preference if
+ // extension wants to be default.
+ TemplateURL* AddExtensionControlledTURL(
+ std::unique_ptr<TemplateURL> ext_dse,
+ std::unique_ptr<TemplateURL::AssociatedExtensionInfo> ext_info);
+ // Remove extension turl from preferences and model.
Peter Kasting 2016/12/22 20:49:03 Nit: Expand this (and comments like it) to cover t
Alexander Yashkin 2016/12/23 19:44:08 Done, thanks.
+ void RemoveExtensionControlledTURL(const std::string& ext_id);
+
KeywordWebDataService* web_data_service() { return web_data_service_.get(); }
TemplateURLService* model() { return model_.get(); }
TestingProfile* profile() { return profile_.get(); }

Powered by Google App Engine
This is Rietveld 408576698