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

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

Issue 965593002: Improved profiler view and inclusive profile tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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
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 function_ref_element; 5 library function_ref_element;
6 6
7 import 'dart:html'; 7 import 'dart:html';
8 import 'package:polymer/polymer.dart'; 8 import 'package:polymer/polymer.dart';
9 import 'package:observatory/service.dart'; 9 import 'package:observatory/service.dart';
10 import 'service_ref.dart'; 10 import 'service_ref.dart';
(...skipping 29 matching lines...) Expand all
40 functionRef.qualified = true; 40 functionRef.qualified = true;
41 shadowRoot.children.add(functionRef); 41 shadowRoot.children.add(functionRef);
42 insertTextSpanIntoShadowRoot('.'); 42 insertTextSpanIntoShadowRoot('.');
43 } 43 }
44 } 44 }
45 insertLinkIntoShadowRoot(name, url, hoverText); 45 insertLinkIntoShadowRoot(name, url, hoverText);
46 } else { 46 } else {
47 insertTextSpanIntoShadowRoot(name); 47 insertTextSpanIntoShadowRoot(name);
48 } 48 }
49 } 49 }
50 } 50 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/debugger.html ('k') | runtime/observatory/lib/src/elements/observatory_element.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698