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

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 10996011: Regen html_dartium.dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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:
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 0426097005d214bf99f8c6df283eac5cc85bc6e0..f0e124e12467df3c7f9433c7fc79da7c2047fc2e 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -41173,6 +41173,11 @@ class _DOMWindowImpl extends _EventTargetImpl implements Window {
localStorage['dart-port:$name'] = JSON.stringify(serialized);
}
+ String createObjectUrl(object) => DOMURL.createObjectURL(object);
+ void revokeObjectUrl(String url) {
+ DOMURL.revokeObjectURL(url);
+ }
+
_WindowEventsImpl get on =>
new _WindowEventsImpl(this);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698