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

Side by Side Diff: runtime/observatory/lib/src/elements/code_view.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 | « no previous file | runtime/observatory/lib/src/elements/css/shared.css » ('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) 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 library code_view_element; 5 library code_view_element;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:html'; 8 import 'dart:html';
9 import 'package:observatory/cpu_profile.dart'; 9 import 'package:observatory/cpu_profile.dart';
10 import 'package:observatory/service.dart' as S; 10 import 'package:observatory/service.dart' as S;
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 return 'dart'; 637 return 'dart';
638 case M.CodeKind.native: 638 case M.CodeKind.native:
639 return 'native'; 639 return 'native';
640 case M.CodeKind.stub: 640 case M.CodeKind.stub:
641 return 'stub'; 641 return 'stub';
642 case M.CodeKind.tag: 642 case M.CodeKind.tag:
643 return 'tag'; 643 return 'tag';
644 case M.CodeKind.collected: 644 case M.CodeKind.collected:
645 return 'collected'; 645 return 'collected';
646 } 646 }
647 throw new Exception('Unkown CodeKind ($kind)'); 647 throw new Exception('Unknown CodeKind ($kind)');
648 } 648 }
649 } 649 }
OLDNEW
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/css/shared.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698