| Index: mojo/shell/context.cc
|
| diff --git a/mojo/shell/context.cc b/mojo/shell/context.cc
|
| index 86f06c382e143a46a45eb54d188abdbbc13fca88..51c32eb95bed1f19b87d36b27f085f7d75d6537f 100644
|
| --- a/mojo/shell/context.cc
|
| +++ b/mojo/shell/context.cc
|
| @@ -60,7 +60,7 @@ class ViewManagerLoader : public ServiceLoader {
|
| private:
|
| virtual void LoadService(ServiceManager* manager,
|
| const GURL& url,
|
| - ScopedShellHandle shell_handle) OVERRIDE {
|
| + ScopedMessagePipeHandle shell_handle) OVERRIDE {
|
| scoped_ptr<Application> app(new Application(shell_handle.Pass()));
|
| app->AddServiceConnector(
|
| new ServiceConnector<services::view_manager::ViewManagerConnection,
|
| @@ -90,7 +90,7 @@ class Context::NativeViewportServiceLoader : public ServiceLoader {
|
| private:
|
| virtual void LoadService(ServiceManager* manager,
|
| const GURL& url,
|
| - ScopedShellHandle service_handle) OVERRIDE {
|
| + ScopedMessagePipeHandle service_handle) OVERRIDE {
|
| app_.reset(::CreateNativeViewportService(context_, service_handle.Pass()));
|
| }
|
|
|
|
|