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

Side by Side Diff: tests/html/dom_isolates_test.dart.child_isolate.dart

Issue 13144014: Implement spawnDomUri. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 import 'dart:html';
vsm 2013/04/01 14:07:18 Standard copyright message?
Anton Muhin 2013/04/01 14:18:17 Done.
2 import 'dart:isolate';
3
4 main() {
5 port.receive((msg, replyTo) {
6 if (msg != 'check') {
7 replyTo.send('wrong msg: $msg');
8 }
9 replyTo.send('${window.location}');
10 port.close();
11 });
12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698