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

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

Issue 685263003: The rest of the Presentation API IDL as stubs. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/PresentationSession.idl
diff --git a/Source/modules/presentation/PresentationSession.idl b/Source/modules/presentation/PresentationSession.idl
new file mode 100644
index 0000000000000000000000000000000000000000..b705a2ced7dfc556c10ce0795926af5312db1881
--- /dev/null
+++ b/Source/modules/presentation/PresentationSession.idl
@@ -0,0 +1,22 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// http://webscreens.github.io/presentation-api/#presentationsession
+
+enum PresentationSessionState {
+ "connected",
+ "disconnected"
+};
+
+[
+ GarbageCollected,
+ RuntimeEnabled=Presentation
+] interface PresentationSession : EventTarget {
+ readonly attribute DOMString? id;
+ readonly attribute PresentationSessionState state;
+ void postMessage(DOMString message);
Peter Beverloo 2014/10/29 20:51:20 nit: blank lines between the "sections".
whywhat 2014/10/29 22:09:27 Done.
+ void close();
+ attribute EventHandler onmessage;
+ attribute EventHandler onstatechange;
+};

Powered by Google App Engine
This is Rietveld 408576698