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

Unified Diff: Source/modules/mediastream/MediaDevices.idl

Issue 1184743002: Implement enumerateDevices() according to spec. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix expected output of global interface listing test Created 5 years, 6 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/mediastream/MediaDevices.idl
diff --git a/Source/modules/mediastream/MediaDevices.idl b/Source/modules/mediastream/MediaDevices.idl
new file mode 100644
index 0000000000000000000000000000000000000000..e5f2f6b55ccd8192feb72732abcfee3574937b55
--- /dev/null
+++ b/Source/modules/mediastream/MediaDevices.idl
@@ -0,0 +1,13 @@
+// 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.
+
+// http://w3c.github.io/mediacapture-main/#mediadevices
+
+[
+ GarbageCollected,
+ RuntimeEnabled=EnumerateDevices
+]
+interface MediaDevices : EventTarget {
+ [RuntimeEnabled=EnumerateDevices, TypeChecking=Interface, CallWith=ScriptState] Promise<sequence<MediaDeviceInfo>> enumerateDevices();
+};

Powered by Google App Engine
This is Rietveld 408576698