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

Unified Diff: Source/modules/presentation/Presentation.idl

Issue 1225523002: Presentation API: startSession() no longer takes a presentation id. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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: Source/modules/presentation/Presentation.idl
diff --git a/Source/modules/presentation/Presentation.idl b/Source/modules/presentation/Presentation.idl
index 58094291617f7ada1a1261c1617dbbb1faa9a09e..2ec7725fde5ed4f6ae21fb6faeac3b57c4c42357 100644
--- a/Source/modules/presentation/Presentation.idl
+++ b/Source/modules/presentation/Presentation.idl
@@ -9,8 +9,7 @@
RuntimeEnabled=Presentation
] interface Presentation : EventTarget {
// This API used by controlling browsing context.
- // TODO(avayvod): The |presentationId| argument is not in the spec.
- [CallWith=ScriptState] Promise<PresentationSession> startSession(DOMString url, [Default=Undefined] optional DOMString presentationId);
+ [CallWith=ScriptState] Promise<PresentationSession> startSession(DOMString url);
// TODO(avayvod): The |presentationId| argument should not be optional.
[CallWith=ScriptState] Promise<PresentationSession> joinSession(DOMString url, [Default=Undefined] optional DOMString presentationId);
[CallWith=ScriptState] Promise<PresentationAvailability> getAvailability(DOMString url);
« no previous file with comments | « Source/modules/presentation/Presentation.cpp ('k') | public/platform/modules/presentation/WebPresentationClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698