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

Unified Diff: tools/dom/templates/html/dart2js/impl_URL.darttemplate

Issue 14630016: Getting html_dart2js and html_dartium a bit more in sync. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: tools/dom/templates/html/dart2js/impl_URL.darttemplate
diff --git a/tools/dom/templates/html/dart2js/impl_URL.darttemplate b/tools/dom/templates/html/dart2js/impl_URL.darttemplate
index 1a02aa118fb7c2448baac021efda39c7c1c2bade..3a20388e1ea3c04adb196cb7379bca059ed3a8a2 100644
--- a/tools/dom/templates/html/dart2js/impl_URL.darttemplate
+++ b/tools/dom/templates/html/dart2js/impl_URL.darttemplate
@@ -11,8 +11,8 @@ $(ANNOTATIONS)class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
'(window.URL || window.webkitURL).createObjectURL(#)',
blob_OR_source_OR_stream);
- static void revokeObjectUrl(String objectUrl) =>
+ static void revokeObjectUrl(String url) =>
JS('void',
- '(window.URL || window.webkitURL).revokeObjectURL(#)', objectUrl);
+ '(window.URL || window.webkitURL).revokeObjectURL(#)', url);
$!MEMBERS
}

Powered by Google App Engine
This is Rietveld 408576698