Index: mojo/shell/shell_application_delegate.cc |
diff --git a/mojo/shell/shell_application_delegate.cc b/mojo/shell/shell_application_delegate.cc |
index 8c9faa7a7a57a15d05b607fc8d77b8fd06a0518d..445bc373ae57ed72f929dfcecb4ec5157186fa5f 100644 |
--- a/mojo/shell/shell_application_delegate.cc |
+++ b/mojo/shell/shell_application_delegate.cc |
@@ -28,9 +28,11 @@ void ShellApplicationDelegate::Create( |
bindings_.AddBinding(this, request.Pass()); |
} |
-void ShellApplicationDelegate::CreateInstanceForHandle(ScopedHandle channel, |
- const String& url) { |
- manager_->CreateInstanceForHandle(channel.Pass(), GURL(url)); |
+void ShellApplicationDelegate::CreateInstanceForHandle( |
+ ScopedHandle channel, |
+ const String& url, |
+ CapabilityFilterPtr filter) { |
+ manager_->CreateInstanceForHandle(channel.Pass(), GURL(url), filter.Pass()); |
} |
} // namespace shell |