Index: mojo/shell/context.cc |
diff --git a/mojo/shell/context.cc b/mojo/shell/context.cc |
index f5d405f5f1e312b23f222b3ae35682420d24daf5..ab70d3dcda5215754be89f8ca57956046a1194d3 100644 |
--- a/mojo/shell/context.cc |
+++ b/mojo/shell/context.cc |
@@ -61,7 +61,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, |
@@ -91,7 +91,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())); |
} |