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

Unified Diff: runtime/bin/vmservice/client/deployed/web/index.html

Issue 219333011: Change how we provide value previews in the vm service. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix tests / 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
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice/client/deployed/web/index.html
diff --git a/runtime/bin/vmservice/client/deployed/web/index.html b/runtime/bin/vmservice/client/deployed/web/index.html
index a871022df19ad48453917de383f4a26fdd856fc6..0fc4b80c9d02be0ba33fe09cc626819a17525485 100644
--- a/runtime/bin/vmservice/client/deployed/web/index.html
+++ b/runtime/bin/vmservice/client/deployed/web/index.html
@@ -299,14 +299,14 @@
</template>
<template if="{{ isNull(ref.serviceType) }}">
- <div title="{{ hoverText }}">{{ ref['preview'] }}</div>
+ <div title="{{ hoverText }}">{{ ref['valueAsString'] }}</div>
</template>
<template if="{{ (isString(ref.serviceType) ||
isBool(ref.serviceType) ||
isInt(ref.serviceType)) ||
isDouble(ref.serviceType)) }}">
- <a href="{{ url }}">{{ ref['preview'] }}</a>
+ <a href="{{ url }}">{{ ref['valueAsString'] }}</a>
</template>
<template if="{{ (isType(ref.serviceType)) }}">
@@ -1376,10 +1376,10 @@
</class-ref>
</div>
</div>
- <template if="{{ instance['preview'] != null }}">
+ <template if="{{ instance['valueAsString'] != null }}">
<div class="memberItem">
- <div class="memberName">preview</div>
- <div class="memberValue">{{ instance['preview'] }}</div>
+ <div class="memberName">value</div>
+ <div class="memberValue">{{ instance['valueAsString'] }}</div>
</div>
</template>
<div class="memberItem">
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698