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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/app/application.dart

Issue 208243006: Allow built in Observatory to work on any port (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 | Annotate | Revision Log
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 app; 5 part of app;
6 6
7 /// A request response interceptor is called for each response. 7 /// A request response interceptor is called for each response.
8 typedef void RequestResponseInterceptor(); 8 typedef void RequestResponseInterceptor();
9 9
10 /// The observatory application. Instances of this are created and owned 10 /// The observatory application. Instances of this are created and owned
(...skipping 18 matching lines...) Expand all
29 } 29 }
30 30
31 ObservatoryApplication.devtools() : 31 ObservatoryApplication.devtools() :
32 locationManager = new LocationManager(), 32 locationManager = new LocationManager(),
33 vm = new DartiumVM() { 33 vm = new DartiumVM() {
34 _initOnce(); 34 _initOnce();
35 } 35 }
36 36
37 ObservatoryApplication() : 37 ObservatoryApplication() :
38 locationManager = new LocationManager(), 38 locationManager = new LocationManager(),
39 vm = new HttpVM('http://127.0.0.1:8181/') { 39 vm = new HttpVM() {
40 _initOnce(); 40 _initOnce();
41 } 41 }
42 } 42 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698