| 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 6546c600c359bdb07ca731e4675fceca9edc2332..4f53a568cbe2792ff497e9cc4798899b495485f0 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,
|
| @@ -644,4 +643,3 @@ void PresentationServiceImpl::DefaultSessionStartContext::Reset() {
|
| }
|
|
|
| } // namespace content
|
| -
|
|
|