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

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

Issue 271893002: Add trace_service_pause_events flag and related tracing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/message_handler.cc » ('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_io; 5 part of vmservice_io;
6 6
7 class WebSocketClient extends Client { 7 class WebSocketClient extends Client {
8 static const int PARSE_ERROR_CODE = 4000; 8 static const int PARSE_ERROR_CODE = 4000;
9 static const int BINARY_MESSAGE_ERROR_CODE = 4001; 9 static const int BINARY_MESSAGE_ERROR_CODE = 4001;
10 static const int NOT_MAP_ERROR_CODE = 4002; 10 static const int NOT_MAP_ERROR_CODE = 4002;
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 120
121 Future startServer() { 121 Future startServer() {
122 return HttpServer.bind(ip, port).then((s) { 122 return HttpServer.bind(ip, port).then((s) {
123 // Only display message when port is automatically selected. 123 // Only display message when port is automatically selected.
124 var display_message = (ip != '127.0.0.1' || port != 8181); 124 var display_message = (ip != '127.0.0.1' || port != 8181);
125 // Retrieve port. 125 // Retrieve port.
126 port = s.port; 126 port = s.port;
127 _server = s; 127 _server = s;
128 _server.listen(_requestHandler); 128 _server.listen(_requestHandler);
129 if (display_message) { 129 if (display_message) {
130 print('VMService listening on $ip:$port'); 130 print('Observatory listening on http://$ip:$port');
131 } 131 }
132 return s; 132 return s;
133 }); 133 });
134 } 134 }
135 } 135 }
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/message_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698