diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-22 23:25:44 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-22 23:25:44 +0000 |
commit | f1484c5242850142011c4db4572b9b742f6b56f5 (patch) | |
tree | 6cc51ae1fca2aea4a7f76ab9171a4247eff78a9f /apps/shortcut_manager_factory.cc | |
parent | 59bf05a05ddf1bec2d2a4ad6d38a3338a41b7805 (diff) | |
download | chromium_src-f1484c5242850142011c4db4572b9b742f6b56f5.zip chromium_src-f1484c5242850142011c4db4572b9b742f6b56f5.tar.gz chromium_src-f1484c5242850142011c4db4572b9b742f6b56f5.tar.bz2 |
Remove references to Profile from browser_context_keyed_service.
BUG=227219
R=joi@chromium.org
Review URL: https://codereview.chromium.org/15517005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@201634 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/shortcut_manager_factory.cc')
-rw-r--r-- | apps/shortcut_manager_factory.cc | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/apps/shortcut_manager_factory.cc b/apps/shortcut_manager_factory.cc index 4d2b513..5aa339e 100644 --- a/apps/shortcut_manager_factory.cc +++ b/apps/shortcut_manager_factory.cc @@ -13,14 +13,14 @@ namespace apps { // static ShortcutManager* ShortcutManagerFactory::GetForProfile(Profile* profile) { return static_cast<ShortcutManager*>( - GetInstance()->GetServiceForProfile(profile, true)); + GetInstance()->GetServiceForBrowserContext(profile, true)); } // static void ShortcutManagerFactory::ResetForProfile(Profile* profile) { ShortcutManagerFactory* factory = GetInstance(); - factory->ProfileShutdown(profile); - factory->ProfileDestroyed(profile); + factory->BrowserContextShutdown(profile); + factory->BrowserContextDestroyed(profile); } ShortcutManagerFactory* ShortcutManagerFactory::GetInstance() { @@ -28,19 +28,20 @@ ShortcutManagerFactory* ShortcutManagerFactory::GetInstance() { } ShortcutManagerFactory::ShortcutManagerFactory() - : ProfileKeyedServiceFactory("ShortcutManager", - ProfileDependencyManager::GetInstance()) { + : BrowserContextKeyedServiceFactory( + "ShortcutManager", + BrowserContextDependencyManager::GetInstance()) { } ShortcutManagerFactory::~ShortcutManagerFactory() { } -ProfileKeyedService* ShortcutManagerFactory::BuildServiceInstanceFor( +BrowserContextKeyedService* ShortcutManagerFactory::BuildServiceInstanceFor( content::BrowserContext* profile) const { return new ShortcutManager(static_cast<Profile*>(profile)); } -bool ShortcutManagerFactory::ServiceIsCreatedWithProfile() const { +bool ShortcutManagerFactory::ServiceIsCreatedWithBrowserContext() const { return true; } |