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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 177473004: Handle collected objects and expired handles more gracefully. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 2
3 3
4 <title>Dart VM Observatory</title> 4 <title>Dart VM Observatory</title>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss"> 6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss">
7 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 7 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
8 8
9 9
10 <script src="index_devtools.html_bootstrap.dart.js"></script> 10 <script src="index_devtools.html_bootstrap.dart.js"></script>
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 vertical-align: top; 313 vertical-align: top;
314 padding: 0 0 0 1em; 314 padding: 0 0 0 1em;
315 } 315 }
316 </style> 316 </style>
317 <div> 317 <div>
318 <template if="{{ isUnexpectedRef(ref['type']) }}"> 318 <template if="{{ isUnexpectedRef(ref['type']) }}">
319 unexpected reference type &lt;{{ ref['type'] }}&gt; 319 unexpected reference type &lt;{{ ref['type'] }}&gt;
320 </template> 320 </template>
321 321
322 <template if="{{ isNullRef(ref['type']) }}"> 322 <template if="{{ isNullRef(ref['type']) }}">
323 {{ name }} 323 <div title="{{ hoverText }}">{{ name }}</div>
324 </template> 324 </template>
325 325
326 <template if="{{ (isStringRef(ref['type']) || 326 <template if="{{ (isStringRef(ref['type']) ||
327 isBoolRef(ref['type']) || 327 isBoolRef(ref['type']) ||
328 isIntRef(ref['type'])) }}"> 328 isIntRef(ref['type'])) }}">
329 <a href="{{ url }}">{{ name }}</a> 329 <a href="{{ url }}">{{ name }}</a>
330 </template> 330 </template>
331 331
332 <template if="{{ isClosureRef(ref['type']) }}"> 332 <template if="{{ isClosureRef(ref['type']) }}">
333 <a href="{{ url }}"> 333 <a href="{{ url }}">
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 <template> 1182 <template>
1183 <response-viewer app="{{ app }}"></response-viewer> 1183 <response-viewer app="{{ app }}"></response-viewer>
1184 </template> 1184 </template>
1185 1185
1186 </polymer-element> 1186 </polymer-element>
1187 1187
1188 1188
1189 <observatory-application devtools="true"></observatory-application> 1189 <observatory-application devtools="true"></observatory-application>
1190 1190
1191 </body></html> 1191 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698