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

Unified Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html

Issue 197873028: Implement isolate view page. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak html / gen js Created 6 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html
diff --git a/runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html b/runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html
index e5f78b9fbe780f91959c0d82de44b51c25bcbb5b..9d3826a32ddd4e016771c109243450a52e5dccde 100644
--- a/runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html
+++ b/runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html
@@ -1,5 +1,6 @@
<head>
<link rel="import" href="function_ref.html">
+ <link rel="import" href="isolate_ref.html">
<link rel="import" href="observatory_element.html">
<link rel="import" href="script_ref.html">
</head>
@@ -16,14 +17,7 @@
<div class="col-md-4">
<div class="row">
- <template if="{{ isolate.entry['id'] != null }}">
- <a href="{{ isolate.hashLink(isolate.entry['id']) }}">
- {{ isolate.name }}
- </a>
- </template>
- <template if="{{ isolate.entry['id'] == null }}">
- {{ isolate.name }}
- </template>
+ <isolate-ref ref="{{ isolate }}"></isolate-ref>
</div>
<div class="row">
@@ -66,7 +60,7 @@
<a href="{{ isolate.relativeHashLink('allocationprofile') }}">
{{ isolate.newHeapUsed | formatSize }}/{{ isolate.oldHeapUsed | formatSize }}
</a>
- (<a href="{{ isolate.relativeHashLink('heapmap') }}">map</a>)
+ ( <a href="{{ isolate.relativeHashLink('heapmap') }}">map</a> )
</div>
<div class="col-md-2">
<template if="{{ isolate.topFrame == null }}">

Powered by Google App Engine
This is Rietveld 408576698