Index: content/renderer/presentation/presentation_dispatcher.cc |
diff --git a/content/renderer/presentation/presentation_dispatcher.cc b/content/renderer/presentation/presentation_dispatcher.cc |
index 6e0f3f2d971e6585ac3cfbab21c94e6aab02b8be..d299c1abf019c3c9ce629ae781986b1f5dd04bed 100644 |
--- a/content/renderer/presentation/presentation_dispatcher.cc |
+++ b/content/renderer/presentation/presentation_dispatcher.cc |
@@ -210,9 +210,8 @@ void PresentationDispatcher::closeSession( |
const blink::WebString& presentationId) { |
ConnectToPresentationServiceIfNeeded(); |
- presentation_service_->CloseSession( |
- presentationUrl.utf8(), |
- presentationId.utf8()); |
+ presentation_service_->CloseConnection(presentationUrl.utf8(), |
+ presentationId.utf8()); |
} |
void PresentationDispatcher::terminateSession( |
@@ -220,9 +219,8 @@ void PresentationDispatcher::terminateSession( |
const blink::WebString& presentationId) { |
ConnectToPresentationServiceIfNeeded(); |
- presentation_service_->TerminateSession( |
- presentationUrl.utf8(), |
- presentationId.utf8()); |
+ presentation_service_->Terminate(presentationUrl.utf8(), |
+ presentationId.utf8()); |
} |
void PresentationDispatcher::getAvailability( |