From 16fca9b8a9e129a2bc50bc39fa3d2b33db64efdb Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Mon, 23 Apr 2012 18:40:26 +0000 Subject: Add a Profile* member to TemplateURL. This makes some invocations of ReplaceSearchTerms() a bit less verbose, and will be useful later when UIThreadSearchTermsData starts taking a Profile*. One downside is that there are a number of const_cast<>()s added when we try to access the profile() of a const TemplateURL*. These will all go away soon when TemplateURLService is switched to using "const" much less, so I didn't worry too much about them. BUG=none TEST=none Review URL: https://chromiumcodereview.appspot.com/10173001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133483 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/autocomplete/keyword_provider_unittest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/browser/autocomplete/keyword_provider_unittest.cc') diff --git a/chrome/browser/autocomplete/keyword_provider_unittest.cc b/chrome/browser/autocomplete/keyword_provider_unittest.cc index dd3a2e9..685608d 100644 --- a/chrome/browser/autocomplete/keyword_provider_unittest.cc +++ b/chrome/browser/autocomplete/keyword_provider_unittest.cc @@ -205,7 +205,7 @@ TEST_F(KeywordProviderTest, AddKeyword) { string16 keyword(ASCIIToUTF16("foo")); data.SetKeyword(keyword); data.SetURL("http://www.google.com/foo?q={searchTerms}"); - TemplateURL* template_url = new TemplateURL(data); + TemplateURL* template_url = new TemplateURL(NULL, data); model_->Add(template_url); ASSERT_TRUE(template_url == model_->GetTemplateURLForKeyword(keyword)); } -- cgit v1.1