| 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 import 'dart:html'; | 5 import 'dart:html'; |
| 6 import 'dart:async'; | 6 import 'dart:async'; |
| 7 | 7 |
| 8 import 'package:observatory/app.dart'; | 8 import 'package:observatory/app.dart'; |
| 9 import 'package:observatory/repositories.dart'; | 9 import 'package:observatory/repositories.dart'; |
| 10 import 'package:observatory/service_html.dart' show SourceLocation; | 10 import 'package:observatory/service_html.dart' show SourceLocation; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 script-inset-wrapped button.toggle-profile { | 76 script-inset-wrapped button.toggle-profile { |
| 77 background-color: transparent; | 77 background-color: transparent; |
| 78 padding: 0; | 78 padding: 0; |
| 79 margin: 0; | 79 margin: 0; |
| 80 border: none; | 80 border: none; |
| 81 position: absolute; | 81 position: absolute; |
| 82 display: inline-block; | 82 display: inline-block; |
| 83 top: 5px; | 83 top: 5px; |
| 84 color: #888888; | 84 color: #888888; |
| 85 line-height: 30px; | 85 line-height: 30px; |
| 86 font: 400 20px 'Montserrat', sans-serif; |
| 86 } | 87 } |
| 87 script-inset-wrapped button.refresh { | 88 script-inset-wrapped button.refresh { |
| 88 right: 5px; | 89 right: 5px; |
| 89 font-size: 25px; | 90 font-size: 25px; |
| 90 } | 91 } |
| 91 script-inset-wrapped button.toggle-profile { | 92 script-inset-wrapped button.toggle-profile { |
| 92 right: 30px; | 93 right: 30px; |
| 93 font-size: 20px; | 94 font-size: 20px; |
| 94 } | 95 } |
| 95 script-inset-wrapped button.toggle-profile.enabled { | 96 script-inset-wrapped button.toggle-profile.enabled { |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 ObservatoryApplication.app.events, | 238 ObservatoryApplication.app.events, |
| 238 startPos: _location.tokenPos, | 239 startPos: _location.tokenPos, |
| 239 endPos: _location.endTokenPos, | 240 endPos: _location.endTokenPos, |
| 240 currentPos: _currentPos, | 241 currentPos: _currentPos, |
| 241 inDebuggerContext: _inDebuggerContext ?? false, | 242 inDebuggerContext: _inDebuggerContext ?? false, |
| 242 variables: _variables ?? const [], | 243 variables: _variables ?? const [], |
| 243 queue: ObservatoryApplication.app.queue) | 244 queue: ObservatoryApplication.app.queue) |
| 244 ]; | 245 ]; |
| 245 } | 246 } |
| 246 } | 247 } |
| OLD | NEW |