| Index: content/renderer/presentation/presentation_dispatcher.cc
|
| diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc
|
| index d44b9929a0fb548a4422a2cb687de5d940acfd38..eec933b874dba7d3ebdf510d6dc3833d3e3a74e5 100644
|
| --- a/content/renderer/presentation/presentation_dispatcher.cc
|
| +++ b/content/renderer/presentation/presentation_dispatcher.cc
|
| @@ -120,6 +120,16 @@ void PresentationDispatcher::joinSession(
|
| base::Owned(callback)));
|
| }
|
|
|
| +void PresentationDispatcher::closeSession(
|
| + const blink::WebString& presentationUrl,
|
| + const blink::WebString& presentationId) {
|
| + ConnectToPresentationServiceIfNeeded();
|
| +
|
| + presentation_service_->CloseSession(
|
| + presentationUrl.utf8(),
|
| + presentationId.utf8());
|
| +}
|
| +
|
| void PresentationDispatcher::DidChangeDefaultPresentation() {
|
| GURL presentation_url(GetPresentationURLFromFrame(render_frame()));
|
|
|
|
|