| Index: chrome/browser/ui/app_list/start_page_service.h
|
| diff --git a/chrome/browser/ui/app_list/start_page_service.h b/chrome/browser/ui/app_list/start_page_service.h
|
| index 1b7db3bc49b7d7df2a4690a3f0f2ef7ce12ba9b6..21577424a621bc8c6ecfec600915e281005e2ea6 100644
|
| --- a/chrome/browser/ui/app_list/start_page_service.h
|
| +++ b/chrome/browser/ui/app_list/start_page_service.h
|
| @@ -39,10 +39,10 @@ class StartPageService : public BrowserContextKeyedService {
|
| // A BrowserContextKeyedServiceFactory for this service.
|
| class Factory;
|
|
|
| - // ExitObserver to shutdown the service on exiting. WebContents depends
|
| - // on the profile and needs to be closed before the profile and its
|
| + // ProfileDestroyObserver to shutdown the service on exiting. WebContents
|
| + // depends on the profile and needs to be closed before the profile and its
|
| // keyed service shutdown.
|
| - class ExitObserver;
|
| + class ProfileDestroyObserver;
|
|
|
| explicit StartPageService(Profile* profile);
|
| virtual ~StartPageService();
|
| @@ -52,7 +52,7 @@ class StartPageService : public BrowserContextKeyedService {
|
|
|
| Profile* profile_;
|
| scoped_ptr<content::WebContents> contents_;
|
| - scoped_ptr<ExitObserver> exit_observer_;
|
| + scoped_ptr<ProfileDestroyObserver> profile_destroy_observer_;
|
| scoped_ptr<RecommendedApps> recommended_apps_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(StartPageService);
|
|
|