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

Unified Diff: content/browser/presentation/presentation_service_impl.cc

Issue 1208083004: Presentation API: ignore presentation id passed to startSession(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 5 years, 5 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: 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 b937aaa62b2aed95e70cb48d293e809a8536e223..8fa39d05a27aa05471f1a0906d8055eb418d8b71 100644
--- a/content/browser/presentation/presentation_service_impl.cc
+++ b/content/browser/presentation/presentation_service_impl.cc
@@ -233,7 +233,6 @@ void PresentationServiceImpl::ListenForDefaultSessionStart(
void PresentationServiceImpl::StartSession(
const mojo::String& presentation_url,
- const mojo::String& presentation_id,
const NewSessionMojoCallback& callback) {
DVLOG(2) << "StartSession";
if (!delegate_) {
@@ -251,7 +250,7 @@ void PresentationServiceImpl::StartSession(
start_session_request_id_ = GetNextRequestSessionId();
pending_start_session_cb_.reset(new NewSessionMojoCallbackWrapper(callback));
delegate_->StartSession(
- render_process_id_, render_frame_id_, presentation_url, presentation_id,
+ render_process_id_, render_frame_id_, presentation_url,
base::Bind(&PresentationServiceImpl::OnStartSessionSucceeded,
weak_factory_.GetWeakPtr(), start_session_request_id_),
base::Bind(&PresentationServiceImpl::OnStartSessionError,
@@ -639,4 +638,3 @@ void PresentationServiceImpl::DefaultSessionStartContext::Reset() {
}
} // namespace content
-

Powered by Google App Engine
This is Rietveld 408576698