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

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

Issue 974993002: [Presentation API] Added the DefaultPresentationStart event and parsing of the default presentation… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Replaced the unused forward declaration with the used one Created 5 years, 10 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/DefaultPresentationStartEvent.idl
diff --git a/Source/modules/presentation/DefaultPresentationStartEvent.idl b/Source/modules/presentation/DefaultPresentationStartEvent.idl
new file mode 100644
index 0000000000000000000000000000000000000000..72bfe373959063b0f9bd79dc77387eaf32897e9c
--- /dev/null
+++ b/Source/modules/presentation/DefaultPresentationStartEvent.idl
@@ -0,0 +1,15 @@
+// Copyright 2015 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.
+
+// This is not part of the spec yet but is considered an essential feature to have.
+// See https://github.com/w3c/presentation-api/issues/26 and the Working Group discussion
+// http://lists.w3.org/Archives/Public/public-webscreens/2014Nov/0007.html
+// Chromium specific discussion might be found at https://code.google.com/p/chromium/issues/detail?id=459001
mlamouri (slow - plz ping) 2015/03/06 22:43:41 See comment below.
whywhat 2015/03/10 13:00:44 Hm? There's no below comment in this file :)
+
+[
+ Constructor(DOMString type, optional DefaultPresentationStartEventInit eventInitDict),
+ RuntimeEnabled=Presentation
+] interface DefaultPresentationStartEvent : Event {
+ readonly attribute PresentationSession session;
+};

Powered by Google App Engine
This is Rietveld 408576698