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

Unified Diff: third_party/WebKit/Source/modules/webmidi/MIDIMessageEvent.idl

Issue 2489033005: Web MIDI: deprecate MIDIMessageEvent.receivedTime (Closed)
Patch Set: expectation for virtual Created 4 years, 1 month 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/webmidi/MIDIMessageEvent.idl
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIMessageEvent.idl b/third_party/WebKit/Source/modules/webmidi/MIDIMessageEvent.idl
index 7fbd0f6ba277ef15dd0599cead16daac4cf00d15..6c1116ae1308532e91442a6041ee26e5fca97f9d 100644
--- a/third_party/WebKit/Source/modules/webmidi/MIDIMessageEvent.idl
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIMessageEvent.idl
@@ -29,13 +29,8 @@
*/
// http://webaudio.github.io/web-midi-api/#idl-def-MIDIMessageEvent
-
-// TODO(toyoshim): Remove ConstructorCallWith=ExecutionContext and receivedTime.
-// See https://github.com/WebAudio/web-midi-api/issues/145 and crbug.com/599335.
[
- Constructor(DOMString type, optional MIDIMessageEventInit eventInitDict),
- ConstructorCallWith=ExecutionContext,
+ Constructor(DOMString type, optional MIDIMessageEventInit eventInitDict)
] interface MIDIMessageEvent : Event {
- [DeprecateAs=MIDIMessageEventReceivedTime] readonly attribute double receivedTime;
readonly attribute Uint8Array data;
};

Powered by Google App Engine
This is Rietveld 408576698