summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search_engines/template_url_service_test_util.cc
diff options
context:
space:
mode:
authorblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-14 10:10:34 +0000
committerblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-14 10:10:34 +0000
commit540380fc6861d7f0e94fb4980df2e0064efeb066 (patch)
tree7c41d8bb5220f30b37b2a45a507ab568677fec58 /chrome/browser/search_engines/template_url_service_test_util.cc
parentded324964bde9c4b1ad4f7dae8048d4e67b97f5a (diff)
downloadchromium_src-540380fc6861d7f0e94fb4980df2e0064efeb066.zip
chromium_src-540380fc6861d7f0e94fb4980df2e0064efeb066.tar.gz
chromium_src-540380fc6861d7f0e94fb4980df2e0064efeb066.tar.bz2
Move clients of BrowserContextKeyedService to use KeyedService (#4)
This change covers: - //components - Roughly half of the remaining clients in //chrome BUG=351704 TBR=jochen Review URL: https://codereview.chromium.org/198193002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@257067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/search_engines/template_url_service_test_util.cc')
-rw-r--r--chrome/browser/search_engines/template_url_service_test_util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/search_engines/template_url_service_test_util.cc b/chrome/browser/search_engines/template_url_service_test_util.cc
index 3f61682..b36832a 100644
--- a/chrome/browser/search_engines/template_url_service_test_util.cc
+++ b/chrome/browser/search_engines/template_url_service_test_util.cc
@@ -27,7 +27,7 @@
// SetKeywordSearchTermsForURL.
class TestingTemplateURLService : public TemplateURLService {
public:
- static BrowserContextKeyedService* Build(content::BrowserContext* profile) {
+ static KeyedService* Build(content::BrowserContext* profile) {
return new TestingTemplateURLService(static_cast<Profile*>(profile));
}