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

Side by Side Diff: sdk/lib/_blink/dartium/_blink_dartium.dart

Issue 285123002: Fix analyzer errors in html Dartium. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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/dart2js/html_dart2js.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 /** 1 /**
2 * This library provides entry points to the native Blink code which backs 2 * This library provides entry points to the native Blink code which backs
3 * up the dart:html library. 3 * up the dart:html library.
4 */ 4 */
5 library dart.dom._blink; 5 library dart.dom._blink;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:collection'; 8 import 'dart:collection';
9 import 'dart:html'; 9 import 'dart:html';
10 import 'dart:_internal' hide Symbol, deprecated; 10 import 'dart:_internal' hide Symbol, deprecated;
(...skipping 7185 matching lines...) Expand 10 before | Expand all | Expand 10 after
7196 7196
7197 Native_TreeWalker_previousNode_Callback(mthis) native "TreeWalker_previousNode_C allback"; 7197 Native_TreeWalker_previousNode_Callback(mthis) native "TreeWalker_previousNode_C allback";
7198 7198
7199 Native_TreeWalker_previousSibling_Callback(mthis) native "TreeWalker_previousSib ling_Callback"; 7199 Native_TreeWalker_previousSibling_Callback(mthis) native "TreeWalker_previousSib ling_Callback";
7200 7200
7201 // Generated overload resolver 7201 // Generated overload resolver
7202 Native_URL_createObjectUrl(blob_OR_source_OR_stream) { 7202 Native_URL_createObjectUrl(blob_OR_source_OR_stream) {
7203 if ((blob_OR_source_OR_stream is Blob || blob_OR_source_OR_stream == null)) { 7203 if ((blob_OR_source_OR_stream is Blob || blob_OR_source_OR_stream == null)) {
7204 return Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream); 7204 return Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream);
7205 } 7205 }
7206 if ((blob_OR_source_OR_stream is MediaStream || blob_OR_source_OR_stream == null)) { 7206 if ((blob_OR_source_OR_stream is MediaSource || blob_OR_source_OR_stream == null)) {
Leaf 2014/05/14 21:42:09 I don't understand why these lines changed, base o
Emily Fortuna 2014/05/14 21:49:53 Yep, this actually changes if you run go.sh on a c
7207 return Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream); 7207 return Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream);
7208 } 7208 }
7209 if ((blob_OR_source_OR_stream is MediaSource || blob_OR_source_OR_stream == null)) { 7209 if ((blob_OR_source_OR_stream is MediaStream || blob_OR_source_OR_stream == null)) {
7210 return Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream); 7210 return Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream);
7211 } 7211 }
7212 throw new ArgumentError("Incorrect number or type of arguments"); 7212 throw new ArgumentError("Incorrect number or type of arguments");
7213 } 7213 }
7214 7214
7215 Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_1_Callback"; 7215 Native_URL__createObjectURL_1_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_1_Callback";
7216 7216
7217 Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_2_Callback"; 7217 Native_URL__createObjectURL_2_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_2_Callback";
7218 7218
7219 Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_3_Callback"; 7219 Native_URL__createObjectURL_3_Callback(blob_OR_source_OR_stream) native "URL__cr eateObjectURL_3_Callback";
(...skipping 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after
8350 // _DOMStringMap native entry points 8350 // _DOMStringMap native entry points
8351 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain sKey_Callback"; 8351 Native_DOMStringMap_containsKey(_DOMStringMap, key) native "DOMStringMap_contain sKey_Callback";
8352 8352
8353 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback" ; 8353 Native_DOMStringMap_item(_DOMStringMap, key) native "DOMStringMap_item_Callback" ;
8354 8354
8355 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI tem_Callback"; 8355 Native_DOMStringMap_setItem(_DOMStringMap, key, value) native "DOMStringMap_setI tem_Callback";
8356 8356
8357 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb ack"; 8357 Native_DOMStringMap_remove(_DOMStringMap, key) native "DOMStringMap_remove_Callb ack";
8358 8358
8359 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac k"; 8359 Native_DOMStringMap_get_keys(_DOMStringMap) native "DOMStringMap_getKeys_Callbac k";
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dart2js/html_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698