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

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

Issue 9167039: WebKit refresh (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 a1c476cd2d7a1abd606d4b69e33edd5acdf3d3df..46ea48a920e9f7edc0ef3e147b35529702704a29 100644
--- a/client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_TextTrackCueWrappingImplementation.dart
@@ -14,18 +14,33 @@ class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
String get alignment() { return _get_alignment(this); }
static String _get_alignment(var _this) native;
+ void set alignment(String value) { _set_alignment(this, value); }
+ static void _set_alignment(var _this, String value) native;
+
String get direction() { return _get_direction(this); }
static String _get_direction(var _this) native;
+ void set direction(String value) { _set_direction(this, value); }
+ static void _set_direction(var _this, String value) native;
+
num get endTime() { return _get_endTime(this); }
static num _get_endTime(var _this) native;
+ void set endTime(num value) { _set_endTime(this, value); }
+ static void _set_endTime(var _this, num value) native;
+
String get id() { return _get_id(this); }
static String _get_id(var _this) native;
+ void set id(String value) { _set_id(this, value); }
+ static void _set_id(var _this, String value) native;
+
int get linePosition() { return _get_linePosition(this); }
static int _get_linePosition(var _this) native;
+ void set linePosition(int value) { _set_linePosition(this, value); }
+ static void _set_linePosition(var _this, int value) native;
+
EventListener get onenter() { return _get_onenter(this); }
static EventListener _get_onenter(var _this) native;
@@ -41,18 +56,33 @@ class _TextTrackCueWrappingImplementation extends DOMWrapperBase implements Text
bool get pauseOnExit() { return _get_pauseOnExit(this); }
static bool _get_pauseOnExit(var _this) native;
+ void set pauseOnExit(bool value) { _set_pauseOnExit(this, value); }
+ static void _set_pauseOnExit(var _this, bool value) native;
+
int get size() { return _get_size(this); }
static int _get_size(var _this) native;
+ void set size(int value) { _set_size(this, value); }
+ static void _set_size(var _this, int value) native;
+
bool get snapToLines() { return _get_snapToLines(this); }
static bool _get_snapToLines(var _this) native;
+ void set snapToLines(bool value) { _set_snapToLines(this, value); }
+ static void _set_snapToLines(var _this, bool value) native;
+
num get startTime() { return _get_startTime(this); }
static num _get_startTime(var _this) native;
+ void set startTime(num value) { _set_startTime(this, value); }
+ static void _set_startTime(var _this, num value) native;
+
int get textPosition() { return _get_textPosition(this); }
static int _get_textPosition(var _this) native;
+ void set textPosition(int value) { _set_textPosition(this, value); }
+ static void _set_textPosition(var _this, int value) native;
+
TextTrack get track() { return _get_track(this); }
static TextTrack _get_track(var _this) native;

Powered by Google App Engine
This is Rietveld 408576698