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

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

Issue 98253009: Refactor VM service IDs (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years 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/observatory_elements/field_ref.html
diff --git a/runtime/bin/vmservice/client/lib/src/observatory_elements/field_ref.html b/runtime/bin/vmservice/client/lib/src/observatory_elements/field_ref.html
index 1d6e71640c56112f8de05dae50a41dc4bfce1f24..88577e318089c531bbc4b993d7bbcc77cf5a97cc 100644
--- a/runtime/bin/vmservice/client/lib/src/observatory_elements/field_ref.html
+++ b/runtime/bin/vmservice/client/lib/src/observatory_elements/field_ref.html
@@ -10,10 +10,10 @@
var
</template>
<template if="{{ (field['declared_type']['name'] != 'dynamic') }}">
- <a href="{{ app.locationManager.currentIsolateClassLink(field['declared_type']['id']) }}">
+ <a href="{{ app.locationManager.currentIsolateRelativeLink(field['declared_type']['id']) }}">
{{ field['declared_type']['user_name'] }} </a>
</template>
turnidge 2013/12/19 20:39:29 I think maybe we should make the above a <class-re
Cutch 2013/12/19 21:53:58 I didn't want to mess with field-ref or instance-r
- <a href="{{ app.locationManager.currentIsolateObjectLink(field['id'])}}">
+ <a href="{{ app.locationManager.currentIsolateRelativeLink(field['id'])}}">
{{ field['user_name'] }} </a>
</div>
</template> <script type="application/dart" src="field_ref.dart"></script> </polymer-element>

Powered by Google App Engine
This is Rietveld 408576698