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

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

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 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: client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart b/client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart
index bcb8f34be1521648c4b08cb63f331be99cba2ee2..a1c476cd2d7a1abd606d4b69e33edd5acdf3d3df 100644
--- a/client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart
@@ -26,6 +26,18 @@ class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
int get linePosition() { return _get_linePosition(this); }
static int _get_linePosition(var _this) native;
+ EventListener get onenter() { return _get_onenter(this); }
+ static EventListener _get_onenter(var _this) native;
+
+ void set onenter(EventListener value) { _set_onenter(this, value); }
+ static void _set_onenter(var _this, EventListener value) native;
+
+ EventListener get onexit() { return _get_onexit(this); }
+ static EventListener _get_onexit(var _this) native;
+
+ void set onexit(EventListener value) { _set_onexit(this, value); }
+ static void _set_onexit(var _this, EventListener value) native;
+
bool get pauseOnExit() { return _get_pauseOnExit(this); }
static bool _get_pauseOnExit(var _this) native;
@@ -44,6 +56,23 @@ class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
TextTrack get track() { return _get_track(this); }
static TextTrack _get_track(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 evt) {
+ return _dispatchEvent(this, evt);
+ }
+ static bool _dispatchEvent(receiver, evt) native;
+
DocumentFragment getCueAsHTML() {
return _getCueAsHTML(this);
}
@@ -54,5 +83,17 @@ class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
}
static String _getCueAsSource(receiver) 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 "TextTrackCue"; }
}

Powered by Google App Engine
This is Rietveld 408576698