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

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

Issue 2862383002: Clarify presentation of the target in retaining paths. (Closed)
Patch Set: review Created 3 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
« no previous file with comments | « runtime/observatory/lib/src/elements/timeline_page.dart ('k') | no next file » | 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 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:async'; 6 import 'dart:async';
7 import 'package:observatory/models.dart' as M show IsolateRef, UnknownObjectRef; 7 import 'package:observatory/models.dart' as M show IsolateRef, UnknownObjectRef;
8 import 'package:observatory/src/elements/helpers/rendering_scheduler.dart'; 8 import 'package:observatory/src/elements/helpers/rendering_scheduler.dart';
9 import 'package:observatory/src/elements/helpers/tag.dart'; 9 import 'package:observatory/src/elements/helpers/tag.dart';
10 import 'package:observatory/src/elements/helpers/uris.dart'; 10 import 'package:observatory/src/elements/helpers/uris.dart';
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 @override 45 @override
46 void detached() { 46 void detached() {
47 super.detached(); 47 super.detached();
48 _r.disable(notify: true); 48 _r.disable(notify: true);
49 children = []; 49 children = [];
50 } 50 }
51 51
52 void render() { 52 void render() {
53 children = [ 53 children = [
54 new AnchorElement(href: Uris.inspect(_isolate, object: _obj)) 54 new AnchorElement(href: Uris.inspect(_isolate, object: _obj))
55 ..classes = ['emphasize']
55 ..text = _obj.vmType 56 ..text = _obj.vmType
56 ]; 57 ];
57 } 58 }
58 } 59 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/timeline_page.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698