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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index.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
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 2
3 3
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss"> 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss">
6 6
7 <title>Dart VM Observatory</title> 7 <title>Dart VM Observatory</title>
8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
9 9
10 10
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 vertical-align: top; 314 vertical-align: top;
315 padding: 0 0 0 1em; 315 padding: 0 0 0 1em;
316 } 316 }
317 </style> 317 </style>
318 <div> 318 <div>
319 <template if="{{ isUnexpectedRef(ref['type']) }}"> 319 <template if="{{ isUnexpectedRef(ref['type']) }}">
320 unexpected reference type &lt;{{ ref['type'] }}&gt; 320 unexpected reference type &lt;{{ ref['type'] }}&gt;
321 </template> 321 </template>
322 322
323 <template if="{{ isNullRef(ref['type']) }}"> 323 <template if="{{ isNullRef(ref['type']) }}">
324 {{ name }} 324 <div title="{{ hoverText }}">{{ name }}</div>
325 </template> 325 </template>
326 326
327 <template if="{{ (isStringRef(ref['type']) || 327 <template if="{{ (isStringRef(ref['type']) ||
328 isBoolRef(ref['type']) || 328 isBoolRef(ref['type']) ||
329 isIntRef(ref['type'])) }}"> 329 isIntRef(ref['type'])) }}">
330 <a href="{{ url }}">{{ name }}</a> 330 <a href="{{ url }}">{{ name }}</a>
331 </template> 331 </template>
332 332
333 <template if="{{ isClosureRef(ref['type']) }}"> 333 <template if="{{ isClosureRef(ref['type']) }}">
334 <a href="{{ url }}"> 334 <a href="{{ url }}">
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
1183 <template> 1183 <template>
1184 <response-viewer app="{{ app }}"></response-viewer> 1184 <response-viewer app="{{ app }}"></response-viewer>
1185 </template> 1185 </template>
1186 1186
1187 </polymer-element> 1187 </polymer-element>
1188 1188
1189 1189
1190 <observatory-application></observatory-application> 1190 <observatory-application></observatory-application>
1191 1191
1192 </body></html> 1192 </body></html>
OLDNEW
« 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