Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3763)

Unified Diff: chrome/browser/media/router/offscreen_presentation_manager.h

Issue 2737413003: [Presentation API] Remove references to presentation sessions. (Closed)
Patch Set: Update PresentationServiceDelegateImpl unittest Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/media/router/offscreen_presentation_manager.h
diff --git a/chrome/browser/media/router/offscreen_presentation_manager.h b/chrome/browser/media/router/offscreen_presentation_manager.h
index b0e62130ce44dc7634b214e5b4c004f9246baa2a..a833488c9488b889aa674b6a5cd4852200eda546 100644
--- a/chrome/browser/media/router/offscreen_presentation_manager.h
+++ b/chrome/browser/media/router/offscreen_presentation_manager.h
@@ -59,11 +59,11 @@ namespace media_router {
// |receiver_connection_request|: Mojo InterfaceRequest to be bind to
// blink::PresentationConnection object in receiver frame's render process.
// void PresentationServiceImpl::OnReceiverConnectionAvailable(
-// const content::PresentationSessionInfo& session,
+// const content::PresentationInfo& presentation_info,
// PresentationConnectionPtr controller_connection_ptr,
// PresentationConnectionRequest receiver_connection_request) {
// presentation_receiver_client_->OnReceiverConnectionAvailable(
-// blink::mojom::PresentationSessionInfo::From(session_info),
+// blink::mojom::PresentationInfo::From(presentation_info),
// std::move(controller_connection_ptr),
// std::move(receiver_connection_request));
// }
@@ -77,7 +77,8 @@ namespace media_router {
// |message|: Text message to be sent.
// PresentationConnctionPtr::SendString(
// const blink::WebString& message) {
-// target_connection_->OnSessionMessageReceived(std::move(session_message));
+// target_connection_->OnConnectionMessageReceived(
+// std::move(connection_message));
// }
//
// A controller or receiver leaves the offscreen presentation (e.g., due to

Powered by Google App Engine
This is Rietveld 408576698