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

Unified Diff: client/dom/generated/src/wrapping/_MediaStreamWrappingImplementation.dart

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage Created 9 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: client/dom/generated/src/wrapping/_MediaStreamWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_MediaStreamWrappingImplementation.dart b/client/dom/generated/src/wrapping/_MediaStreamWrappingImplementation.dart
deleted file mode 100644
index 1ae95ad92a94cb99b24f6c547f612737f97686d4..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_MediaStreamWrappingImplementation.dart
+++ /dev/null
@@ -1,59 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class _MediaStreamWrappingImplementation extends DOMWrapperBase implements MediaStream {
- _MediaStreamWrappingImplementation() : super() {}
-
- static create__MediaStreamWrappingImplementation() native {
- return new _MediaStreamWrappingImplementation();
- }
-
- String get label() { return _get__MediaStream_label(this); }
- static String _get__MediaStream_label(var _this) native;
-
- EventListener get onended() { return _get__MediaStream_onended(this); }
- static EventListener _get__MediaStream_onended(var _this) native;
-
- void set onended(EventListener value) { _set__MediaStream_onended(this, value); }
- static void _set__MediaStream_onended(var _this, EventListener value) native;
-
- int get readyState() { return _get__MediaStream_readyState(this); }
- static int _get__MediaStream_readyState(var _this) native;
-
- MediaStreamTrackList get tracks() { return _get__MediaStream_tracks(this); }
- static MediaStreamTrackList _get__MediaStream_tracks(var _this) native;
-
- void addEventListener(String type, EventListener listener, [bool useCapture = null]) {
- if (useCapture === null) {
- _addEventListener(this, type, listener);
- return;
- } else {
- _addEventListener_2(this, type, listener, useCapture);
- return;
- }
- }
- static void _addEventListener(receiver, type, listener) native;
- static void _addEventListener_2(receiver, type, listener, useCapture) native;
-
- bool dispatchEvent(Event event) {
- return _dispatchEvent(this, event);
- }
- static bool _dispatchEvent(receiver, event) native;
-
- void removeEventListener(String type, EventListener listener, [bool useCapture = null]) {
- if (useCapture === null) {
- _removeEventListener(this, type, listener);
- return;
- } else {
- _removeEventListener_2(this, type, listener, useCapture);
- return;
- }
- }
- static void _removeEventListener(receiver, type, listener) native;
- static void _removeEventListener_2(receiver, type, listener, useCapture) native;
-
- String get typeName() { return "MediaStream"; }
-}

Powered by Google App Engine
This is Rietveld 408576698