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

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

Issue 299823004: Upgrade Observatory to Polymer 0.10.x (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="packages/observatory/src/elements/css/shared.cs s"> 8 <link rel="stylesheet" href="css/shared.css">
9 <style> 9 <style>
10 .errorBox { 10 .errorBox {
11 background-color: #f5f5f5; 11 background-color: #f5f5f5;
12 border: 1px solid #ccc; 12 border: 1px solid #ccc;
13 padding: 10px; 13 padding: 10px;
14 font-family: consolas, courier, monospace; 14 font-family: consolas, courier, monospace;
15 font-size: 1em; 15 font-size: 1em;
16 line-height: 1.2em; 16 line-height: 1.2em;
17 white-space: pre; 17 white-space: pre;
18 } 18 }
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 <div class="memberValue"> 78 <div class="memberValue">
79 <instance-ref ref="{{ element['value'] }}"></instance-ref> 79 <instance-ref ref="{{ element['value'] }}"></instance-ref>
80 </div> 80 </div>
81 </div> 81 </div>
82 </template> 82 </template>
83 </div> 83 </div>
84 </curly-block> 84 </curly-block>
85 </template> 85 </template>
86 </span> 86 </span>
87 </template> 87 </template>
88 <script type="application/dart" src="instance_ref.dart"></script> 88 <script type="application/dart;component=1" src="instance_ref.dart"></script>
89 </polymer-element> 89 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698