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

Side by Side Diff: runtime/bin/vmservice/server.dart

Issue 21880004: Cleanup vm_service library loading. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/vmservice/vmservice.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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 part of vmservice; 5 part of vmservice_io;
6 6
7 class Server { 7 class Server {
8 int port; 8 int port;
9 static ContentType jsonContentType = ContentType.parse('application/json'); 9 static ContentType jsonContentType = ContentType.parse('application/json');
10 final VmService service; 10 final VmService service;
11 HttpServer _server; 11 HttpServer _server;
12 12
13 Server(this.service, this.port); 13 Server(this.service, this.port);
14 14
15 void _requestHandler(HttpRequest request) { 15 void _requestHandler(HttpRequest request) {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 port = s.port; 61 port = s.port;
62 _server = s; 62 _server = s;
63 _server.listen(_requestHandler); 63 _server.listen(_requestHandler);
64 if (display_message) { 64 if (display_message) {
65 print('VmService listening on port $port'); 65 print('VmService listening on port $port');
66 } 66 }
67 return s; 67 return s;
68 }); 68 });
69 } 69 }
70 } 70 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/vmservice.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698