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

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 16705005: Mark canPlayType as unstable. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /// The Dart HTML library. 1 /// The Dart HTML library.
2 library dart.dom.html; 2 library dart.dom.html;
3 3
4 import 'dart:async'; 4 import 'dart:async';
5 import 'dart:collection'; 5 import 'dart:collection';
6 import 'dart:_collection-dev' hide Symbol; 6 import 'dart:_collection-dev' hide Symbol;
7 import 'dart:html_common'; 7 import 'dart:html_common';
8 import 'dart:indexed_db'; 8 import 'dart:indexed_db';
9 import 'dart:isolate'; 9 import 'dart:isolate';
10 import 'dart:json' as json; 10 import 'dart:json' as json;
(...skipping 14206 matching lines...) Expand 10 before | Expand all | Expand 10 after
14217 final int videoDecodedByteCount; 14217 final int videoDecodedByteCount;
14218 14218
14219 @DomName('HTMLMediaElement.addTextTrack') 14219 @DomName('HTMLMediaElement.addTextTrack')
14220 @DocsEditable 14220 @DocsEditable
14221 // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-eleme nt.html#dom-media-addtexttrack 14221 // http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-eleme nt.html#dom-media-addtexttrack
14222 @Experimental 14222 @Experimental
14223 TextTrack addTextTrack(String kind, [String label, String language]) native; 14223 TextTrack addTextTrack(String kind, [String label, String language]) native;
14224 14224
14225 @DomName('HTMLMediaElement.canPlayType') 14225 @DomName('HTMLMediaElement.canPlayType')
14226 @DocsEditable 14226 @DocsEditable
14227 @Unstable
14227 String canPlayType(String type, String keySystem) native; 14228 String canPlayType(String type, String keySystem) native;
14228 14229
14229 @DomName('HTMLMediaElement.load') 14230 @DomName('HTMLMediaElement.load')
14230 @DocsEditable 14231 @DocsEditable
14231 void load() native; 14232 void load() native;
14232 14233
14233 @DomName('HTMLMediaElement.pause') 14234 @DomName('HTMLMediaElement.pause')
14234 @DocsEditable 14235 @DocsEditable
14235 void pause() native; 14236 void pause() native;
14236 14237
(...skipping 15617 matching lines...) Expand 10 before | Expand all | Expand 10 after
29854 _position = nextPosition; 29855 _position = nextPosition;
29855 return true; 29856 return true;
29856 } 29857 }
29857 _current = null; 29858 _current = null;
29858 _position = _array.length; 29859 _position = _array.length;
29859 return false; 29860 return false;
29860 } 29861 }
29861 29862
29862 T get current => _current; 29863 T get current => _current;
29863 } 29864 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698