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

Unified Diff: dart/runtime/bin/vmservice/client/lib/src/observatory_elements/code_view.html

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: dart/runtime/bin/vmservice/client/lib/src/observatory_elements/code_view.html
===================================================================
--- dart/runtime/bin/vmservice/client/lib/src/observatory_elements/code_view.html (revision 31530)
+++ dart/runtime/bin/vmservice/client/lib/src/observatory_elements/code_view.html (working copy)
@@ -1,5 +1,6 @@
<head>
<link rel="import" href="disassembly_entry.html">
+ <link rel="import" href="function_ref.html">
<link rel="import" href="observatory_element.html">
</head>
<polymer-element name="code-view" extends="observatory-element">
@@ -8,9 +9,7 @@
<div class="col-md-8 col-md-offset-2">
<div class="{{ cssPanelClass }}">
<div class="panel-heading">
- <a href="{{ app.locationManager.currentIsolateObjectLink(code['function']['id'])}}">
- {{ code['function']['user_name'] }} ({{ code['function']['name'] }})
- </a>
+ <function-ref app="{{ app }}" ref="{{ code['function'] }}"></function-ref>
</div>
<div class="panel-body">
<div class="row">

Powered by Google App Engine
This is Rietveld 408576698