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

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

Issue 998933005: Dart: Rename mojo:X -> dart:mojo.X (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: merge Created 5 years, 9 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/hello_world/world/main.dart ('k') | mojo/dart/apptest/apptest/apptest.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 import 'mojo:application'; 10 import 'dart:mojo.application';
11 import 'mojo:bindings'; 11 import 'dart:mojo.bindings';
12 import 'mojo:core'; 12 import 'dart:mojo.core';
13 13
14 import 'package:mojo/services/network/public/interfaces/network_service.mojom.da rt'; 14 import 'package:mojo/services/network/public/interfaces/network_service.mojom.da rt';
15 import 'package:mojo/services/network/public/interfaces/url_loader.mojom.dart'; 15 import 'package:mojo/services/network/public/interfaces/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
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 _urlLoader = null; 68 _urlLoader = null;
69 _networkService.close(); 69 _networkService.close();
70 _networkService = null; 70 _networkService = null;
71 } 71 }
72 } 72 }
73 73
74 main(List args) { 74 main(List args) {
75 MojoHandle appHandle = new MojoHandle(args[0]); 75 MojoHandle appHandle = new MojoHandle(args[0]);
76 new WGet.fromHandle(appHandle); 76 new WGet.fromHandle(appHandle);
77 } 77 }
OLDNEW
« no previous file with comments | « examples/dart/hello_world/world/main.dart ('k') | mojo/dart/apptest/apptest/apptest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698