diff options
Diffstat (limited to 'chrome/browser/search_engines/template_url.cc')
-rw-r--r-- | chrome/browser/search_engines/template_url.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/search_engines/template_url.cc b/chrome/browser/search_engines/template_url.cc index e07ee6d..73ab4c9 100644 --- a/chrome/browser/search_engines/template_url.cc +++ b/chrome/browser/search_engines/template_url.cc @@ -749,10 +749,10 @@ void TemplateURLData::SetURL(const std::string& url) { TemplateURL::TemplateURL(Profile* profile, const TemplateURLData& data) : profile_(profile), data_(data), - url_ref_(ALLOW_THIS_IN_INITIALIZER_LIST(this), TemplateURLRef::SEARCH), - suggestions_url_ref_(ALLOW_THIS_IN_INITIALIZER_LIST(this), + url_ref_(this, TemplateURLRef::SEARCH), + suggestions_url_ref_(this, TemplateURLRef::SUGGEST), - instant_url_ref_(ALLOW_THIS_IN_INITIALIZER_LIST(this), + instant_url_ref_(this, TemplateURLRef::INSTANT) { SetPrepopulateId(data_.prepopulate_id); |