| Index: mojo/application_manager/background_shell_application_loader.h
|
| diff --git a/mojo/application_manager/background_shell_application_loader.h b/mojo/application_manager/background_shell_application_loader.h
|
| index 399df434ea648059687cb9704365499433155689..0c8e806f6f40b7444c65f7fde282a1ae16cf3820 100644
|
| --- a/mojo/application_manager/background_shell_application_loader.h
|
| +++ b/mojo/application_manager/background_shell_application_loader.h
|
| @@ -29,6 +29,7 @@ class MOJO_APPLICATION_MANAGER_EXPORT BackgroundShellApplicationLoader
|
| // ApplicationLoader overrides:
|
| void Load(ApplicationManager* manager,
|
| const GURL& url,
|
| + ScopedMessagePipeHandle shell_handle,
|
| scoped_refptr<LoadCallbacks> callbacks) override;
|
| void OnApplicationError(ApplicationManager* manager,
|
| const GURL& url) override;
|
| @@ -45,7 +46,7 @@ class MOJO_APPLICATION_MANAGER_EXPORT BackgroundShellApplicationLoader
|
| // isn't thread safe).
|
| void LoadOnBackgroundThread(ApplicationManager* manager,
|
| const GURL& url,
|
| - ScopedMessagePipeHandle* shell_handle);
|
| + ScopedMessagePipeHandle shell_handle);
|
| void OnApplicationErrorOnBackgroundThread(ApplicationManager* manager,
|
| const GURL& url);
|
| bool quit_on_shutdown_;
|
| @@ -66,9 +67,6 @@ class MOJO_APPLICATION_MANAGER_EXPORT BackgroundShellApplicationLoader
|
|
|
| scoped_ptr<base::DelegateSimpleThread> thread_;
|
|
|
| - // Lives on |thread_|. Trivial interface that calls through to |loader_|.
|
| - BackgroundLoader* background_loader_;
|
| -
|
| DISALLOW_COPY_AND_ASSIGN(BackgroundShellApplicationLoader);
|
| };
|
|
|
|
|