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

Side by Side Diff: runtime/observatory/lib/src/elements/debugger.dart

Issue 1043953002: Fix some Observatory issues that crept in with my last couple changes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix tests Created 5 years, 8 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/observatory/lib/src/elements/isolate_view.html » ('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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library debugger_page_element; 5 library debugger_page_element;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'observatory_element.dart'; 9 import 'observatory_element.dart';
10 import 'package:observatory/app.dart';
10 import 'package:observatory/cli.dart'; 11 import 'package:observatory/cli.dart';
11 import 'package:observatory/debugger.dart'; 12 import 'package:observatory/debugger.dart';
12 import 'package:observatory/service.dart'; 13 import 'package:observatory/service.dart';
13 import 'package:polymer/polymer.dart'; 14 import 'package:polymer/polymer.dart';
14 15
15 // TODO(turnidge): Move Debugger, DebuggerCommand to debugger library. 16 // TODO(turnidge): Move Debugger, DebuggerCommand to debugger library.
16 abstract class DebuggerCommand extends Command { 17 abstract class DebuggerCommand extends Command {
17 ObservatoryDebugger debugger; 18 ObservatoryDebugger debugger;
18 19
19 DebuggerCommand(this.debugger, name, children) 20 DebuggerCommand(this.debugger, name, children)
(...skipping 1474 matching lines...) Expand 10 before | Expand all | Expand 10 after
1494 default: 1495 default:
1495 busy = false; 1496 busy = false;
1496 break; 1497 break;
1497 } 1498 }
1498 }); 1499 });
1499 } 1500 }
1500 1501
1501 DebuggerInputElement.created() : super.created(); 1502 DebuggerInputElement.created() : super.created();
1502 } 1503 }
1503 1504
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/isolate_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698