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

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: 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 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 // Sets the default presentation URL and ID for frame given by 94 // Sets the default presentation URL and ID for frame given by
95 // |render_process_id| and |render_frame_id|. 95 // |render_process_id| and |render_frame_id|.
96 // If |default_presentation_url| is empty, the default presentation URL will 96 // If |default_presentation_url| is empty, the default presentation URL will
97 // be cleared. 97 // be cleared.
98 virtual void SetDefaultPresentationUrl( 98 virtual void SetDefaultPresentationUrl(
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. The presentation id of the session will
105 // be the default presentation ID if any or a generated one otherwise.
105 // Typically, the embedder will allow the user to select a screen to show 106 // Typically, the embedder will allow the user to select a screen to show
106 // |presentation_url|. 107 // |presentation_url|.
107 // |render_process_id|, |render_frame_id|: ID of originating frame. 108 // |render_process_id|, |render_frame_id|: ID of originating frame.
108 // |presentation_url|: URL of the presentation. 109 // |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
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 110 // |success_cb|: Invoked with session info, if presentation session started
114 // successfully. 111 // successfully.
115 // |error_cb|: Invoked with error reason, if presentation session did not 112 // |error_cb|: Invoked with error reason, if presentation session did not
116 // start. 113 // start.
117 virtual void StartSession( 114 virtual void StartSession(
118 int render_process_id, 115 int render_process_id,
119 int render_frame_id, 116 int render_frame_id,
120 const std::string& presentation_url, 117 const std::string& presentation_url,
121 const std::string& presentation_id,
122 const PresentationSessionSuccessCallback& success_cb, 118 const PresentationSessionSuccessCallback& success_cb,
123 const PresentationSessionErrorCallback& error_cb) = 0; 119 const PresentationSessionErrorCallback& error_cb) = 0;
124 120
125 // Joins an existing presentation session. Unlike StartSession(), this 121 // Joins an existing presentation session. Unlike StartSession(), this
126 // does not bring a screen list UI. 122 // does not bring a screen list UI.
127 // |render_process_id|, |render_frame_id|: ID for originating frame. 123 // |render_process_id|, |render_frame_id|: ID for originating frame.
128 // |presentation_url|: URL of the presentation. 124 // |presentation_url|: URL of the presentation.
129 // |presentation_id|: The ID of the presentation to join. 125 // |presentation_id|: The ID of the presentation to join.
130 // |success_cb|: Invoked with session info, if presentation session joined 126 // |success_cb|: Invoked with session info, if presentation session joined
131 // successfully. 127 // successfully.
(...skipping 29 matching lines...) Expand all
161 virtual void SendMessage( 157 virtual void SendMessage(
162 int render_process_id, 158 int render_process_id,
163 int render_frame_id, 159 int render_frame_id,
164 scoped_ptr<PresentationSessionMessage> message_request, 160 scoped_ptr<PresentationSessionMessage> message_request,
165 const SendMessageCallback& send_message_cb) = 0; 161 const SendMessageCallback& send_message_cb) = 0;
166 }; 162 };
167 163
168 } // namespace content 164 } // namespace content
169 165
170 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_ 166 #endif // CONTENT_PUBLIC_BROWSER_PRESENTATION_SERVICE_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/common/presentation/presentation_service.mojom ('k') | content/renderer/presentation/presentation_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698