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 82abc8b2f0d526ecfd45ce9a1dc813712dde5895..9b4e46547084268b90e2a2ea805dff612d966a50 100644 |
--- a/content/browser/presentation/presentation_service_impl.cc |
+++ b/content/browser/presentation/presentation_service_impl.cc |
@@ -407,6 +407,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::ListenForSessionStateChange() { |
if (!delegate_) |
return; |