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

Side by Side Diff: client/dom/generated/src/interface/HTMLTrackElement.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface HTMLTrackElement extends HTMLElement { 7 interface HTMLTrackElement extends HTMLElement {
8 8
9 static final int ERROR = 3;
10
9 static final int LOADED = 2; 11 static final int LOADED = 2;
10 12
11 static final int LOADING = 1; 13 static final int LOADING = 1;
12 14
13 static final int NONE = 0; 15 static final int NONE = 0;
14 16
15 bool isDefault; 17 bool isDefault;
16 18
17 String kind; 19 String kind;
18 20
19 String label; 21 String label;
20 22
21 final int readyState; 23 final int readyState;
22 24
23 String src; 25 String src;
24 26
25 String srclang; 27 String srclang;
26 28
27 final TextTrack track; 29 final TextTrack track;
28 } 30 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/HTMLMediaElement.dart ('k') | client/dom/templates/dom/frog/impl_Storage.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698