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

Unified Diff: client/html/generated/html/dartium/MarqueeElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/html/generated/html/dartium/MarqueeElement.dart
diff --git a/client/html/generated/html/dartium/MarqueeElement.dart b/client/html/generated/html/dartium/MarqueeElement.dart
new file mode 100644
index 0000000000000000000000000000000000000000..f264de27638392d283ef3582e11c8c09cbd2ca8a
--- /dev/null
+++ b/client/html/generated/html/dartium/MarqueeElement.dart
@@ -0,0 +1,58 @@
+
+class _MarqueeElementImpl extends _ElementImpl implements MarqueeElement {
+ _MarqueeElementImpl._wrap(ptr) : super._wrap(ptr);
+
+ String get behavior() => _wrap(_ptr.behavior);
+
+ void set behavior(String value) { _ptr.behavior = _unwrap(value); }
+
+ String get bgColor() => _wrap(_ptr.bgColor);
+
+ void set bgColor(String value) { _ptr.bgColor = _unwrap(value); }
+
+ String get direction() => _wrap(_ptr.direction);
+
+ void set direction(String value) { _ptr.direction = _unwrap(value); }
+
+ String get height() => _wrap(_ptr.height);
+
+ void set height(String value) { _ptr.height = _unwrap(value); }
+
+ int get hspace() => _wrap(_ptr.hspace);
+
+ void set hspace(int value) { _ptr.hspace = _unwrap(value); }
+
+ int get loop() => _wrap(_ptr.loop);
+
+ void set loop(int value) { _ptr.loop = _unwrap(value); }
+
+ int get scrollAmount() => _wrap(_ptr.scrollAmount);
+
+ void set scrollAmount(int value) { _ptr.scrollAmount = _unwrap(value); }
+
+ int get scrollDelay() => _wrap(_ptr.scrollDelay);
+
+ void set scrollDelay(int value) { _ptr.scrollDelay = _unwrap(value); }
+
+ bool get trueSpeed() => _wrap(_ptr.trueSpeed);
+
+ void set trueSpeed(bool value) { _ptr.trueSpeed = _unwrap(value); }
+
+ int get vspace() => _wrap(_ptr.vspace);
+
+ void set vspace(int value) { _ptr.vspace = _unwrap(value); }
+
+ String get width() => _wrap(_ptr.width);
+
+ void set width(String value) { _ptr.width = _unwrap(value); }
+
+ void start() {
+ _ptr.start();
+ return;
+ }
+
+ void stop() {
+ _ptr.stop();
+ return;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698