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/app_restore_service.h | |
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/app_restore_service.h')
-rw-r--r-- | apps/app_restore_service.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_restore_service.h b/apps/app_restore_service.h index 32c5738..97dcd88 100644 --- a/apps/app_restore_service.h +++ b/apps/app_restore_service.h @@ -29,7 +29,7 @@ using extensions::app_file_handler_util::SavedFileEntry; namespace apps { // Tracks what apps need to be restarted when the browser restarts. -class AppRestoreService : public ProfileKeyedService, +class AppRestoreService : public BrowserContextKeyedService, public content::NotificationObserver, public extensions::ShellWindowRegistry::Observer { public: @@ -54,7 +54,7 @@ class AppRestoreService : public ProfileKeyedService, virtual void OnShellWindowIconChanged(ShellWindow* shell_window) OVERRIDE; virtual void OnShellWindowRemoved(ShellWindow* shell_window) OVERRIDE; - // ProfileKeyedService. + // BrowserContextKeyedService. virtual void Shutdown() OVERRIDE; void RecordAppStart(const std::string& extension_id); |