Index: services/window_manager/window_manager_impl.cc |
diff --git a/services/window_manager/window_manager_impl.cc b/services/window_manager/window_manager_impl.cc |
index 1cba820ba83572a05d299fbc49d6c537bcb0df5e..8c42aa64d5f1ac2e4b010bfdad5d18f23d82ba52 100644 |
--- a/services/window_manager/window_manager_impl.cc |
+++ b/services/window_manager/window_manager_impl.cc |
@@ -49,8 +49,9 @@ void WindowManagerImpl::NotifyCaptureChanged(Id new_capture_id, |
void WindowManagerImpl::Embed( |
const mojo::String& url, |
- mojo::InterfaceRequest<mojo::ServiceProvider> service_provider) { |
- window_manager_->Embed(url, service_provider.Pass()); |
+ mojo::InterfaceRequest<mojo::ServiceProvider> services, |
+ mojo::ServiceProviderPtr exposed_services) { |
+ window_manager_->Embed(url, services.Pass(), exposed_services.Pass()); |
} |
void WindowManagerImpl::SetCapture(Id view, |