diff options
author | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-13 05:28:20 +0000 |
---|---|---|
committer | blundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-13 05:28:20 +0000 |
commit | 12b7af356ea046e14f0c070d5368591ea6accefa (patch) | |
tree | fe91fb1d39ae239862a2bb3421748b0a58baf988 /apps/app_window_geometry_cache.cc | |
parent | cd61254edabc1fb6ba6c42e8338010f5c0518b81 (diff) | |
download | chromium_src-12b7af356ea046e14f0c070d5368591ea6accefa.zip chromium_src-12b7af356ea046e14f0c070d5368591ea6accefa.tar.gz chromium_src-12b7af356ea046e14f0c070d5368591ea6accefa.tar.bz2 |
Move clients of BrowserContextKeyedService to using KeyedService (#3)
This CL moves the following clients of BCKS to using the KeyedService
component:
- //apps
- //chrome/browser/apps
- //chrome/browser/chromeos
- //chrome/browser/managed_mode
BUG=351704
TBR=yoz,jochen
Review URL: https://codereview.chromium.org/197733002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256756 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/app_window_geometry_cache.cc')
-rw-r--r-- | apps/app_window_geometry_cache.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/app_window_geometry_cache.cc b/apps/app_window_geometry_cache.cc index deefc7a..22ad90c 100644 --- a/apps/app_window_geometry_cache.cc +++ b/apps/app_window_geometry_cache.cc @@ -10,7 +10,7 @@ #include "chrome/browser/chrome_notification_types.h" #include "chrome/browser/profiles/incognito_helpers.h" #include "chrome/browser/profiles/profile.h" -#include "components/browser_context_keyed_service/browser_context_dependency_manager.h" +#include "components/keyed_service/content/browser_context_dependency_manager.h" #include "content/public/browser/notification_service.h" #include "content/public/browser/notification_types.h" #include "extensions/browser/extension_prefs.h" @@ -306,8 +306,7 @@ AppWindowGeometryCache::Factory::Factory() AppWindowGeometryCache::Factory::~Factory() {} -BrowserContextKeyedService* -AppWindowGeometryCache::Factory::BuildServiceInstanceFor( +KeyedService* AppWindowGeometryCache::Factory::BuildServiceInstanceFor( content::BrowserContext* context) const { Profile* profile = Profile::FromBrowserContext(context); return new AppWindowGeometryCache(profile, |