Chromium Code Reviews| Index: mojo/shell/content_handler_connection.cc |
| diff --git a/mojo/shell/content_handler_connection.cc b/mojo/shell/content_handler_connection.cc |
| index 37b3b4ef99f8fa2d4fce0e751aa8357b38d30ca7..16896c9b094e2e208f3fcadde9dffb54c7929dc8 100644 |
| --- a/mojo/shell/content_handler_connection.cc |
| +++ b/mojo/shell/content_handler_connection.cc |
| @@ -21,9 +21,11 @@ ContentHandlerConnection::ContentHandlerConnection( |
| ServiceProviderPtr services; |
| mojo::URLRequestPtr request(mojo::URLRequest::New()); |
| request->url = mojo::String::From(content_handler_url.spec()); |
| + // TODO(beng): Need to figure out how to deal with originator and |
| + // CapabilityFilter here. |
| manager->ConnectToApplication( |
| - request.Pass(), qualifier, requestor_url, GetProxy(&services), |
| - nullptr, base::Closure()); |
| + NULL, request.Pass(), qualifier, requestor_url, GetProxy(&services), |
|
sky
2015/07/22 15:57:45
NULL->nullptr
|
| + nullptr, nullptr, base::Closure()); |
| MessagePipe pipe; |
| content_handler_.Bind( |
| InterfacePtrInfo<ContentHandler>(pipe.handle0.Pass(), 0u)); |