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

Unified Diff: tools/dom/src/native_DOMImplementation.dart

Issue 13144014: Implement spawnDomUri. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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/src/native_DOMImplementation.dart
diff --git a/tools/dom/src/native_DOMImplementation.dart b/tools/dom/src/native_DOMImplementation.dart
index 8bcab03d4f5f5bc7de7dbed328ab2b22792e5083..85a5bc9af92cea6dffaf8b920c83e57c6f7641a3 100644
--- a/tools/dom/src/native_DOMImplementation.dart
+++ b/tools/dom/src/native_DOMImplementation.dart
@@ -59,7 +59,8 @@ class _Utils {
static window() native "Utils_window";
static forwardingPrint(String message) native "Utils_forwardingPrint";
- static void spawnDomFunction(Function topLevelFunction, int replyTo) native "Utils_spawnDomFunction";
+ static void spawnDomFunction(Function f, int replyTo) native "Utils_spawnDomFunction";
vsm 2013/04/01 14:07:18 Does f no longer need to be a top-level function?
Anton Muhin 2013/04/01 14:18:17 No, it needs to be, but I'd like to keep line shor
+ static void spawnDomUri(String uri, int replyTo) native "Utils_spawnDomUri";
static int _getNewIsolateId() native "Utils_getNewIsolateId";
static bool shadowRootSupported(Document document) native "Utils_shadowRootSupported";
}

Powered by Google App Engine
This is Rietveld 408576698