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

Unified Diff: components/search_engines/template_url.h

Issue 2639153002: Make extensions DSE persistent in browser prefs (Reland) (Closed)
Patch Set: Fixed after review, round 4 Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: components/search_engines/template_url.h
diff --git a/components/search_engines/template_url.h b/components/search_engines/template_url.h
index d57aed22627266467d0f47eb6bf5b413c5bbface..ad4d7cc9b117576f23fdb2a1ae84994112eec394 100644
--- a/components/search_engines/template_url.h
+++ b/components/search_engines/template_url.h
@@ -512,6 +512,11 @@ class TemplateURL {
const TemplateURLData* data,
const SearchTermsData& search_terms_data);
+ // Special case for search_terms_replacement_key comparison, because of
+ // its special initialization in TemplateURL constructor.
+ static bool SearchTermsReplacementKeysMatch(const std::string& key1,
+ const std::string& key2);
+
const TemplateURLData& data() const { return data_; }
const base::string16& short_name() const { return data_.short_name(); }
@@ -594,6 +599,10 @@ class TemplateURL {
extension_info_ = std::move(extension_info);
}
+ const AssociatedExtensionInfo* GetExtensionInfoForTesting() const {
+ return extension_info_.get();
+ }
+
// Returns true if |url| supports replacement.
bool SupportsReplacement(const SearchTermsData& search_terms_data) const;

Powered by Google App Engine
This is Rietveld 408576698