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

Unified Diff: client/dom/frog/dom_frog.dart

Issue 9618049: Fix for Issue 2036 - remove 'var' in type position on getter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 9 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
« no previous file with comments | « no previous file | client/dom/generated/src/frog/HTMLMediaElement.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index fe3a539fb54eca99016f3b1bd674096757bd6b78..4950aa86507abeb1040d5560786cb5ed0c9c4b9e 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -3302,6 +3302,12 @@ class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement
class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement native "*HTMLMediaElement" {
+ static final int EOS_DECODE_ERR = 2;
+
+ static final int EOS_NETWORK_ERR = 1;
+
+ static final int EOS_NO_ERROR = 0;
+
static final int HAVE_CURRENT_DATA = 2;
static final int HAVE_ENOUGH_DATA = 4;
@@ -3320,6 +3326,12 @@ class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat
static final int NETWORK_NO_SOURCE = 3;
+ static final int SOURCE_CLOSED = 0;
+
+ static final int SOURCE_ENDED = 2;
+
+ static final int SOURCE_OPEN = 1;
+
bool autoplay;
final _TimeRangesJs buffered;
@@ -3908,6 +3920,8 @@ class _HTMLTitleElementJs extends _HTMLElementJs implements HTMLTitleElement nat
class _HTMLTrackElementJs extends _HTMLElementJs implements HTMLTrackElement native "*HTMLTrackElement" {
+ static final int ERROR = 3;
+
static final int LOADED = 2;
static final int LOADING = 1;
@@ -9223,7 +9237,7 @@ class _StorageJs extends _DOMTypeJs implements Storage native "*Storage" {
// captures what would normally be an expando and places property in the
// storage, stringifying the assigned value.
- var get dartObjectLocalStorage() native """
+ get dartObjectLocalStorage() native """
if (this === window.localStorage)
return window._dartLocalStorageLocalStorage;
else if (this === window.sessionStorage)
@@ -15545,6 +15559,12 @@ interface HTMLMarqueeElement extends HTMLElement {
interface HTMLMediaElement extends HTMLElement {
+ static final int EOS_DECODE_ERR = 2;
+
+ static final int EOS_NETWORK_ERR = 1;
+
+ static final int EOS_NO_ERROR = 0;
+
static final int HAVE_CURRENT_DATA = 2;
static final int HAVE_ENOUGH_DATA = 4;
@@ -15563,6 +15583,12 @@ interface HTMLMediaElement extends HTMLElement {
static final int NETWORK_NO_SOURCE = 3;
+ static final int SOURCE_CLOSED = 0;
+
+ static final int SOURCE_ENDED = 2;
+
+ static final int SOURCE_OPEN = 1;
+
bool autoplay;
final TimeRanges buffered;
@@ -16301,6 +16327,8 @@ interface HTMLTitleElement extends HTMLElement {
interface HTMLTrackElement extends HTMLElement {
+ static final int ERROR = 3;
+
static final int LOADED = 2;
static final int LOADING = 1;
« no previous file with comments | « no previous file | client/dom/generated/src/frog/HTMLMediaElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698