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

Unified Diff: runtime/lib/isolate_patch.dart

Issue 834233003: Fix for issue 21398 (only send "literal like" objects across isolates spawned using spawnURI (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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
« no previous file with comments | « runtime/lib/isolate.cc ('k') | runtime/vm/benchmark_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/isolate_patch.dart
===================================================================
--- runtime/lib/isolate_patch.dart (revision 42788)
+++ runtime/lib/isolate_patch.dart (working copy)
@@ -342,13 +342,13 @@
static const _KILL = 4;
- static SendPort _spawnFunction(SendPort readyPort, Function topLevelFunction,
- var message, bool paused)
+ static void _spawnFunction(SendPort readyPort, Function topLevelFunction,
+ var message, bool paused)
native "Isolate_spawnFunction";
- static SendPort _spawnUri(SendPort readyPort, String uri,
- List<String> args, var message,
- bool paused, String packageRoot)
+ static void _spawnUri(SendPort readyPort, String uri,
+ List<String> args, var message,
+ bool paused, String packageRoot)
native "Isolate_spawnUri";
static void _sendOOB(port, msg) native "Isolate_sendOOB";
« no previous file with comments | « runtime/lib/isolate.cc ('k') | runtime/vm/benchmark_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698