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

Side by Side Diff: Source/modules/presentation/Presentation.idl

Issue 1226633007: Sync the Presentation API interfaces with the spec again (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
« no previous file with comments | « Source/modules/presentation/NavigatorPresentation.idl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // https://w3c.github.io/presentation-api/#navigatorpresentation 5 // https://w3c.github.io/presentation-api/#interface-presentation
6 6
7 // TODO(avayvod): This interface is named NavigatorPresentation in the spec:
8 // https://github.com/w3c/presentation-api/issues/137
9 [ 7 [
10 GarbageCollected, 8 GarbageCollected,
11 RuntimeEnabled=Presentation 9 RuntimeEnabled=Presentation
12 ] interface Presentation : EventTarget { 10 ] interface Presentation : EventTarget {
13 // This API used by controlling browsing context. 11 // This API used by controlling browsing context.
14 // TODO(avayvod): The |presentationId| argument is not in the spec. 12 // TODO(avayvod): The |presentationId| argument is not in the spec.
15 [CallWith=ScriptState] Promise<PresentationSession> startSession(DOMString u rl, [Default=Undefined] optional DOMString presentationId); 13 [CallWith=ScriptState] Promise<PresentationSession> startSession(DOMString u rl, [Default=Undefined] optional DOMString presentationId);
16 // TODO(avayvod): The |presentationId| argument should not be optional. 14 // TODO(avayvod): The |presentationId| argument should not be optional.
17 [CallWith=ScriptState] Promise<PresentationSession> joinSession(DOMString ur l, [Default=Undefined] optional DOMString presentationId); 15 [CallWith=ScriptState] Promise<PresentationSession> joinSession(DOMString ur l, [Default=Undefined] optional DOMString presentationId);
18 [CallWith=ScriptState] Promise<PresentationAvailability> getAvailability(DOM String url); 16 [CallWith=ScriptState] Promise<PresentationAvailability> getAvailability(DOM String url);
19 attribute EventHandler ondefaultsessionstart; 17 attribute EventHandler ondefaultsessionstart;
20 18
21 // This API used by presenting browsing context. 19 // This API used by presenting browsing context.
22 // TODO(avayvod): The spec has |getSession()| and |getSessions()| instead. 20 // TODO(avayvod): The spec has |getSession()| and |getSessions()| instead.
23 readonly attribute PresentationSession? session; 21 readonly attribute PresentationSession? session;
24 // TODO(avayvod): attribute EventHandler onsessionavailable; 22 // TODO(avayvod): attribute EventHandler onsessionavailable;
25 }; 23 };
OLDNEW
« no previous file with comments | « Source/modules/presentation/NavigatorPresentation.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698