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

Unified Diff: dart/runtime/bin/vmservice/client/lib/src/observatory_elements/function_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/function_view.html
===================================================================
--- dart/runtime/bin/vmservice/client/lib/src/observatory_elements/function_view.html (revision 31530)
+++ dart/runtime/bin/vmservice/client/lib/src/observatory_elements/function_view.html (working copy)
@@ -1,4 +1,6 @@
<head>
+ <link rel="import" href="class_ref.html">
+ <link rel="import" href="code_ref.html">
<link rel="import" href="observatory_element.html">
</head>
<polymer-element name="function-view" extends="observatory-element">
@@ -7,15 +9,13 @@
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-warning">
<div class="panel-heading">
- {{ function['user_name'] }} ({{ function['name'] }})
- <a class="pull-right" href="{{ app.locationManager.currentIsolateClassLink(function['class']['id'])}}">
- {{ function['class']['name'] }}
- </a>
+ {{ function['user_name'] }} ({{ function['name'] }})
+ <class-ref app="{{ app }}" ref="{{ function['class'] }}"></class-ref>
</div>
<div class="panel-body">
<div>
- <a class="btn btn-primary" href="{{ app.locationManager.currentIsolateObjectLink(function['code']['id'])}}">Current Code</a>
- <a class="btn btn-info" href="{{ app.locationManager.currentIsolateObjectLink(function['unoptimized_code']['id'])}}">Unoptimized Code</a>
+ <code-ref app="{{ app }}" ref="{{ function['code'] }}"></code-ref>
+ <code-ref app="{{ app }}" ref="{{ function['unoptimized_code'] }}"></code-ref>
</div>
<table class="table table-hover">
<tbody>

Powered by Google App Engine
This is Rietveld 408576698