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

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

Issue 9359034: A bunch of fixes in idl database generator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Generated files. Created 8 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: client/dom/generated/src/wrapping/_MediaStreamTrackWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_MediaStreamTrackWrappingImplementation.dart b/client/dom/generated/src/wrapping/_MediaStreamTrackWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..bee6e9c56740d7151136663f681cfcdaae9b3d69
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_MediaStreamTrackWrappingImplementation.dart
@@ -0,0 +1,27 @@
+// 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 _MediaStreamTrackWrappingImplementation extends DOMWrapperBase implements MediaStreamTrack {
+ _MediaStreamTrackWrappingImplementation() : super() {}
+
+ static create__MediaStreamTrackWrappingImplementation() native {
+ return new _MediaStreamTrackWrappingImplementation();
+ }
+
+ bool get enabled() { return _get_enabled(this); }
+ static bool _get_enabled(var _this) native;
+
+ void set enabled(bool value) { _set_enabled(this, value); }
+ static void _set_enabled(var _this, bool value) native;
+
+ String get kind() { return _get_kind(this); }
+ static String _get_kind(var _this) native;
+
+ String get label() { return _get_label(this); }
+ static String _get_label(var _this) native;
+
+ String get typeName() { return "MediaStreamTrack"; }
+}

Powered by Google App Engine
This is Rietveld 408576698