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

Side by Side Diff: mojo/dart/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
« no previous file with comments | « mojo/dart/http_load_test/bin/tester.dart ('k') | mojo/dart/http_load_test/lib/src/part0.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!mojo mojo:dart_content_handler
2
3 library test;
4
5 import 'dart:async';
6 import 'dart:mojo.internal';
7
8 import 'package:mojo_services/tracing/tracing.mojom.dart' as tracing;
9
10 part 'src/part0.dart';
11
12 main(List args) {
13 // Hang around for a sec and then close the shell handle.
14 new Timer(new Duration(milliseconds: 1000), () {
15 print('PASS');
16 MojoHandleNatives.close(args[0]);
17 });
18 }
OLDNEW
« no previous file with comments | « mojo/dart/http_load_test/bin/tester.dart ('k') | mojo/dart/http_load_test/lib/src/part0.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698