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

Side by Side Diff: mojo/dart/unittests/http_load_test/lib/main.dart

Issue 1545483003: Dart: Reorganize files (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Fix build file Created 5 years 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
OLDNEW
1 #!mojo mojo:dart_content_handler 1 #!mojo mojo:dart_content_handler
2 2
3 library test; 3 library test;
4 4
5 import 'dart:async'; 5 import 'dart:async';
6 import 'dart:mojo.internal'; 6 import 'dart:mojo.internal';
7 7
8 import 'package:mojo_services/tracing/tracing.mojom.dart' as tracing; 8 import 'package:mojo_services/tracing/tracing.mojom.dart' as tracing;
9 9
10 part 'src/part0.dart'; 10 part 'src/part0.dart';
11 11
12 main(List args) { 12 main(List args) {
13 // Hang around for a sec and then close the shell handle. 13 // Hang around for a sec and then close the shell handle.
14 new Timer(new Duration(milliseconds: 1000), () { 14 new Timer(new Duration(milliseconds: 1000), () {
15 print('PASS'); 15 print('PASS');
16 MojoHandleNatives.close(args[0]); 16 MojoHandleNatives.close(args[0]);
17 }); 17 });
18 } 18 }
OLDNEW
« no previous file with comments | « mojo/dart/unittests/http_load_test/bin/tester.dart ('k') | mojo/dart/unittests/http_load_test/lib/src/part0.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698