| Index: content/browser/presentation/presentation_service_impl.cc
|
| diff --git a/content/browser/presentation/presentation_service_impl.cc b/content/browser/presentation/presentation_service_impl.cc
|
| index 4499ea229eb3dc85d2175641fe71fae11a2da986..ea75760248f45676eccc6ac3c46b5fff4605b092 100644
|
| --- a/content/browser/presentation/presentation_service_impl.cc
|
| +++ b/content/browser/presentation/presentation_service_impl.cc
|
| @@ -76,7 +76,8 @@ PresentationServiceImpl::~PresentationServiceImpl() {
|
| // static
|
| void PresentationServiceImpl::CreateMojoService(
|
| RenderFrameHost* render_frame_host,
|
| - mojo::InterfaceRequest<blink::mojom::PresentationService> request) {
|
| + const service_manager::BindSourceInfo& source_info,
|
| + blink::mojom::PresentationServiceRequest request) {
|
| DVLOG(2) << "CreateMojoService";
|
| WebContents* web_contents =
|
| WebContents::FromRenderFrameHost(render_frame_host);
|
| @@ -101,7 +102,7 @@ void PresentationServiceImpl::CreateMojoService(
|
| }
|
|
|
| void PresentationServiceImpl::Bind(
|
| - mojo::InterfaceRequest<blink::mojom::PresentationService> request) {
|
| + blink::mojom::PresentationServiceRequest request) {
|
| binding_.reset(new mojo::Binding<blink::mojom::PresentationService>(
|
| this, std::move(request)));
|
| }
|
|
|