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

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: Default implementation for the new WebPresentationClient method 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..f4917c69327ec9efc36b76ac6ff2897edff054d3
--- /dev/null
+++ b/Source/modules/presentation/DefaultPresentationStartEvent.idl
@@ -0,0 +1,12 @@
+// 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.
+
+// https://code.google.com/p/chromium/issues/detail?id=459001
Peter Beverloo 2015/03/03 21:19:24 I don't like a link to a bug rather than a spec li
whywhat 2015/03/05 18:41:47 Done.
+
+[
+ Constructor(DOMString type, optional DefaultPresentationStartEventInit eventInitDict),
+ RuntimeEnabled=Presentation
+] interface DefaultPresentationStartEvent : Event {
+ readonly attribute PresentationSession session;
+};

Powered by Google App Engine
This is Rietveld 408576698