| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |