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

Side by Side Diff: examples/dart/wget/main.dart

Issue 1132063007: Rationalize Dart mojo and sky package structure (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « examples/dart/wget/BUILD.gn ('k') | examples/terminal/terminal_file_impl.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Run with, e.g.: 5 // Run with, e.g.:
6 // mojo_shell "mojo:dart_wget http://www.google.com" 6 // mojo_shell "mojo:dart_wget http://www.google.com"
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 import 'dart:typed_data'; 9 import 'dart:typed_data';
10 10
11 import 'package:mojo/public/dart/application.dart'; 11 import 'package:mojo/application.dart';
12 import 'package:mojo/public/dart/bindings.dart'; 12 import 'package:mojo/bindings.dart';
13 import 'package:mojo/public/dart/core.dart'; 13 import 'package:mojo/core.dart';
14 import 'package:mojom/mojo/network_service.mojom.dart'; 14 import 'package:mojom/mojo/network_service.mojom.dart';
15 import 'package:mojom/mojo/url_loader.mojom.dart'; 15 import 'package:mojom/mojo/url_loader.mojom.dart';
16 16
17 class WGet extends Application { 17 class WGet extends Application {
18 NetworkServiceProxy _networkService; 18 NetworkServiceProxy _networkService;
19 UrlLoaderProxy _urlLoader; 19 UrlLoaderProxy _urlLoader;
20 20
21 WGet.fromHandle(MojoHandle handle) : super.fromHandle(handle); 21 WGet.fromHandle(MojoHandle handle) : super.fromHandle(handle);
22 22
23 void initialize(List<String> args, String url) { 23 void initialize(List<String> args, String url) {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 _urlLoader = null; 69 _urlLoader = null;
70 _networkService.close(); 70 _networkService.close();
71 _networkService = null; 71 _networkService = null;
72 } 72 }
73 } 73 }
74 74
75 main(List args) { 75 main(List args) {
76 MojoHandle appHandle = new MojoHandle(args[0]); 76 MojoHandle appHandle = new MojoHandle(args[0]);
77 new WGet.fromHandle(appHandle); 77 new WGet.fromHandle(appHandle);
78 } 78 }
OLDNEW
« no previous file with comments | « examples/dart/wget/BUILD.gn ('k') | examples/terminal/terminal_file_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698