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

Side by Side Diff: sky/sdk/lib/framework/net/fetch.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 | « sky/sdk/lib/framework/layouts/block.dart ('k') | sky/sdk/lib/framework/node.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 import '../shell.dart' as shell; 5 import '../shell.dart' as shell;
6 import 'dart:async'; 6 import 'dart:async';
7 import 'dart:sky' as sky; 7 import 'dart:sky' as sky;
8 import 'dart:typed_data'; 8 import 'dart:typed_data';
9 import 'package:mojo/public/dart/core.dart' as core; 9 import 'package:mojo/core.dart' as core;
10 import 'package:mojom/mojo/network_service.mojom.dart'; 10 import 'package:mojom/mojo/network_service.mojom.dart';
11 import 'package:mojom/mojo/url_loader.mojom.dart'; 11 import 'package:mojom/mojo/url_loader.mojom.dart';
12 12
13 class Response { 13 class Response {
14 ByteData body; 14 ByteData body;
15 15
16 Response(this.body); 16 Response(this.body);
17 17
18 String bodyAsString() { 18 String bodyAsString() {
19 return new String.fromCharCodes(new Uint8List.view(body.buffer)); 19 return new String.fromCharCodes(new Uint8List.view(body.buffer));
(...skipping 15 matching lines...) Expand all
35 var response = (await loader.ptr.start(request)).response; 35 var response = (await loader.ptr.start(request)).response;
36 36
37 loader.close(); 37 loader.close();
38 net.close(); 38 net.close();
39 39
40 if (response.body == null) return new Response(null); 40 if (response.body == null) return new Response(null);
41 41
42 ByteData data = await core.DataPipeDrainer.drainHandle(response.body); 42 ByteData data = await core.DataPipeDrainer.drainHandle(response.body);
43 return new Response(data); 43 return new Response(data);
44 } 44 }
OLDNEW
« no previous file with comments | « sky/sdk/lib/framework/layouts/block.dart ('k') | sky/sdk/lib/framework/node.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698