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

Unified Diff: tools/dom/templates/html/impl/impl_FileReader.darttemplate

Issue 1832713002: Optimize dartium dart:html bindings so real world application performance is acceptable. Improves d… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: update cached patches Created 4 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
Index: tools/dom/templates/html/impl/impl_FileReader.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_FileReader.darttemplate b/tools/dom/templates/html/impl/impl_FileReader.darttemplate
index ba5278f99ee7f2c8093040fec19860652da6a8e7..d698e375e3811cc26f5dcfab8e7d6ecbec4be19e 100644
--- a/tools/dom/templates/html/impl/impl_FileReader.darttemplate
+++ b/tools/dom/templates/html/impl/impl_FileReader.darttemplate
@@ -13,7 +13,7 @@ $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS
$if DART2JS
var res = JS('Null|String|NativeByteBuffer', '#.result', this);
$else
- var res = _blink.BlinkFileReader.instance.result_Getter_(unwrap_jso(this));
+ var res = _blink.BlinkFileReader.instance.result_Getter_(this);
$endif
if (res is ByteBuffer) {
return new Uint8List.view(res);

Powered by Google App Engine
This is Rietveld 408576698