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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/MediaRecorderErrorEvent.idl

Issue 1540303003: MediaRecorder: update to spec (3/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: reverted DEPS to master Created 4 years, 12 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: third_party/WebKit/Source/modules/mediarecorder/MediaRecorderErrorEvent.idl
diff --git a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorderErrorEvent.idl b/third_party/WebKit/Source/modules/mediarecorder/MediaRecorderErrorEvent.idl
deleted file mode 100644
index f1cde7ca5e5b699fe2066a0ba5a52cc42e67fc95..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/modules/mediarecorder/MediaRecorderErrorEvent.idl
+++ /dev/null
@@ -1,23 +0,0 @@
-// 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://w3c.github.io/mediacapture-record/MediaRecorder.html#MediaRecorderErrorEvent
-// https://w3c.github.io/mediacapture-record/MediaRecorder.html#idl-def-RecordingErrorNameEnum
-
-// TODO(mcasas): Remove completely MediaRecorderErrorEvent.* and use generic DOMException instead, see https://github.com/w3c/mediacapture-record/issues/14.
-enum RecordingErrorNameEnum {
- "InvalidState",
- "OutOfMemory",
- "IllegalStreamModification",
- "SecurityError",
- "OtherRecordingError"
-};
-
-// TODO(mcasas): This object should not be a NoInterfaceObject, https://github.com/w3c/mediacapture-record/issues/15.
-[
- NoInterfaceObject
-] interface MediaRecorderErrorEvent : Event {
- readonly attribute RecordingErrorNameEnum name;
- readonly attribute DOMString? message;
-};

Powered by Google App Engine
This is Rietveld 408576698