From 540380fc6861d7f0e94fb4980df2e0064efeb066 Mon Sep 17 00:00:00 2001 From: "blundell@chromium.org" Date: Fri, 14 Mar 2014 10:10:34 +0000 Subject: 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 --- chrome/browser/spellchecker/spellcheck_service_unittest.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'chrome/browser/spellchecker/spellcheck_service_unittest.cc') diff --git a/chrome/browser/spellchecker/spellcheck_service_unittest.cc b/chrome/browser/spellchecker/spellcheck_service_unittest.cc index c481af2..f6cd718 100644 --- a/chrome/browser/spellchecker/spellcheck_service_unittest.cc +++ b/chrome/browser/spellchecker/spellcheck_service_unittest.cc @@ -17,8 +17,7 @@ using chrome::spellcheck_common::WordList; -static BrowserContextKeyedService* BuildSpellcheckService( - content::BrowserContext* profile) { +static KeyedService* BuildSpellcheckService(content::BrowserContext* profile) { return new SpellcheckService(static_cast(profile)); } -- cgit v1.1