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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/instance_ref.html

Issue 251043003: Observatory Display PC descriptors with disassembling (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 <head> 1 <head>
2 <link rel="import" href="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
4 <link rel="import" href="service_ref.html"> 4 <link rel="import" href="service_ref.html">
5 </head> 5 </head>
6 <polymer-element name="instance-ref" extends="service-ref"> 6 <polymer-element name="instance-ref" extends="service-ref">
7 <template> 7 <template>
8 <link rel="stylesheet" href="css/shared.css" /> 8 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s">
9 <span> 9 <span>
10 <template if="{{ isUnexpected(ref.serviceType) }}"> 10 <template if="{{ isUnexpected(ref.serviceType) }}">
11 unexpected reference type &lt;{{ ref.serviceType }}&gt; 11 unexpected reference type &lt;{{ ref.serviceType }}&gt;
12 </template> 12 </template>
13 13
14 <template if="{{ isError(ref.serviceType) }}"> 14 <template if="{{ isError(ref.serviceType) }}">
15 <pre>{{ ref.message }}</pre> 15 <pre>{{ ref.message }}</pre>
16 </template> 16 </template>
17 17
18 <template if="{{ isNull(ref.serviceType) }}"> 18 <template if="{{ isNull(ref.serviceType) }}">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 </div> 69 </div>
70 </div> 70 </div>
71 </template> 71 </template>
72 </div> 72 </div>
73 </curly-block> 73 </curly-block>
74 </template> 74 </template>
75 </span> 75 </span>
76 </template> 76 </template>
77 <script type="application/dart" src="instance_ref.dart"></script> 77 <script type="application/dart" src="instance_ref.dart"></script>
78 </polymer-element> 78 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698