| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index ec402d5f1e27adf7dae049e9632c55869854705a..cd0a735102b9acfba55a5c2baafe6c5cfd9bfbee 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -788,7 +788,7 @@ void RenderFrameHostImpl::Create(
|
| const shell::Identity& remote_identity,
|
| media::mojom::ServiceFactoryRequest request) {
|
| std::unique_ptr<shell::InterfaceRegistry> registry(
|
| - new shell::InterfaceRegistry(nullptr));
|
| + new shell::InterfaceRegistry);
|
| #if defined(OS_ANDROID) && defined(ENABLE_MOJO_CDM)
|
| registry->AddInterface(
|
| base::Bind(&ProvisionFetcherImpl::Create, this));
|
| @@ -2476,7 +2476,7 @@ void RenderFrameHostImpl::SetUpMojoIfNeeded() {
|
| if (interface_registry_.get())
|
| return;
|
|
|
| - interface_registry_.reset(new shell::InterfaceRegistry(nullptr));
|
| + interface_registry_.reset(new shell::InterfaceRegistry);
|
| if (!GetProcess()->GetRemoteInterfaces())
|
| return;
|
|
|
|
|