| 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 b592f52c55e49073ef744432e24ecf555e7a8c92..b11c16122be9511b5d903ba8e559e6c85bcd0f53 100644
|
| --- a/content/browser/presentation/presentation_service_impl.cc
|
| +++ b/content/browser/presentation/presentation_service_impl.cc
|
| @@ -422,6 +422,15 @@ void PresentationServiceImpl::CloseSession(
|
| presentation_id);
|
| }
|
|
|
| +void PresentationServiceImpl::TerminateSession(
|
| + const mojo::String& presentation_url,
|
| + const mojo::String& presentation_id) {
|
| + DVLOG(2) << "TerminateSession " << presentation_id;
|
| + if (delegate_)
|
| + delegate_->TerminateSession(render_process_id_, render_frame_id_,
|
| + presentation_id);
|
| +}
|
| +
|
| void PresentationServiceImpl::OnConnectionStateChanged(
|
| const PresentationSessionInfo& connection,
|
| PresentationConnectionState state) {
|
|
|