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

Side by Side Diff: content/public/browser/presentation_service_delegate.h

Issue 1208083004: Presentation API: ignore presentation id passed to startSession(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 int render_process_id, 99 int render_process_id,
100 int render_frame_id, 100 int render_frame_id,
101 const std::string& default_presentation_url, 101 const std::string& default_presentation_url,
102 const std::string& default_presentation_id) = 0; 102 const std::string& default_presentation_id) = 0;
103 103
104 // Starts a new presentation session. 104 // Starts a new presentation session.
105 // Typically, the embedder will allow the user to select a screen to show 105 // Typically, the embedder will allow the user to select a screen to show
106 // |presentation_url|. 106 // |presentation_url|.
107 // |render_process_id|, |render_frame_id|: ID of originating frame. 107 // |render_process_id|, |render_frame_id|: ID of originating frame.
108 // |presentation_url|: URL of the presentation. 108 // |presentation_url|: URL of the presentation.
109 // |presentation_id|: The caller may provide an non-empty string to be used
110 // as the ID of the presentation. If empty, the default presentation ID
whywhat 2015/07/02 19:54:31 Perhaps you want to leave the comment about the de
mlamouri (slow - plz ping) 2015/07/08 14:37:09 Done.
111 // will be used. If both are empty, the embedder will automatically generate
112 // one.
113 // |success_cb|: Invoked with session info, if presentation session started 109 // |success_cb|: Invoked with session info, if presentation session started
114 // successfully. 110 // successfully.
115 // |error_cb|: Invoked with error reason, if presentation session did not 111 // |error_cb|: Invoked with error reason, if presentation session did not
116 // start. 112 // start.
117 virtual void StartSession( 113 virtual void StartSession(
118 int render_process_id, 114 int render_process_id,
119 int render_frame_id, 115 int render_frame_id,
120 const std::string& presentation_url, 116 const std::string& presentation_url,
121 const std::string& presentation_id,
122 const PresentationSessionSuccessCallback& success_cb, 117 const PresentationSessionSuccessCallback& success_cb,
123 const PresentationSessionErrorCallback& error_cb) = 0; 118 const PresentationSessionErrorCallback& error_cb) = 0;
124 119
125 // Joins an existing presentation session. Unlike StartSession(), this 120 // Joins an existing presentation session. Unlike StartSession(), this
126 // does not bring a screen list UI. 121 // does not bring a screen list UI.
127 // |render_process_id|, |render_frame_id|: ID for originating frame. 122 // |render_process_id|, |render_frame_id|: ID for originating frame.
128 // |presentation_url|: URL of the presentation. 123 // |presentation_url|: URL of the presentation.
129 // |presentation_id|: The ID of the presentation to join. 124 // |presentation_id|: The ID of the presentation to join.
130 // |success_cb|: Invoked with session info, if presentation session joined 125 // |success_cb|: Invoked with session info, if presentation session joined
131 // successfully. 126 // successfully.
(...skipping 29 matching lines...) Expand all
161 virtual void SendMessage( 156 virtual void SendMessage(
162 int render_process_id, 157 int render_process_id,
163 int render_frame_id, 158 int render_frame_id,
164 scoped_ptr<PresentationSessionMessage> message_request, 159 scoped_ptr<PresentationSessionMessage> message_request,
165 const SendMessageCallback& send_message_cb) = 0; 160 const SendMessageCallback& send_message_cb) = 0;
166 }; 161 };
167 162
168 } // namespace content 163 } // namespace content
169 164
170 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_ 165 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698