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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: content/public/browser/presentation_service_delegate.h
diff --git a/content/public/browser/presentation_service_delegate.h b/content/public/browser/presentation_service_delegate.h
index 89da14d8b3add9ee975be8999cc55179778aa111..217c1fdc27cb8fd9c1be6f457855d75df88ab57a 100644
--- a/content/public/browser/presentation_service_delegate.h
+++ b/content/public/browser/presentation_service_delegate.h
@@ -101,15 +101,12 @@ class CONTENT_EXPORT PresentationServiceDelegate {
const std::string& default_presentation_url,
const std::string& default_presentation_id) = 0;
- // Starts a new presentation session.
+ // Starts a new presentation session. The presentation id of the session will
+ // be the default presentation ID if any or a generated one otherwise.
// Typically, the embedder will allow the user to select a screen to show
// |presentation_url|.
// |render_process_id|, |render_frame_id|: ID of originating frame.
// |presentation_url|: URL of the presentation.
- // |presentation_id|: The caller may provide an non-empty string to be used
- // as the ID of the presentation. If empty, the default presentation ID
- // will be used. If both are empty, the embedder will automatically generate
- // one.
// |success_cb|: Invoked with session info, if presentation session started
// successfully.
// |error_cb|: Invoked with error reason, if presentation session did not
@@ -118,7 +115,6 @@ class CONTENT_EXPORT PresentationServiceDelegate {
int render_process_id,
int render_frame_id,
const std::string& presentation_url,
- const std::string& presentation_id,
const PresentationSessionSuccessCallback& success_cb,
const PresentationSessionErrorCallback& error_cb) = 0;
« 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