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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_summary.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="action_link.html"> 2 <link rel="import" href="action_link.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="isolate_ref.html"> 4 <link rel="import" href="isolate_ref.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="script_inset.html"> 6 <link rel="import" href="script_inset.html">
7 <link rel="import" href="script_ref.html"> 7 <link rel="import" href="script_ref.html">
8 </head> 8 </head>
9 <polymer-element name="isolate-summary" extends="observatory-element"> 9 <polymer-element name="isolate-summary" extends="observatory-element">
10 <template> 10 <template>
11 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s"> 11 <link rel="stylesheet" href="css/shared.css">
12 <div class="flex-row"> 12 <div class="flex-row">
13 <div class="flex-item-10-percent"> 13 <div class="flex-item-10-percent">
14 <img src="packages/observatory/src/elements/img/isolate_icon.png"> 14 <img src="img/isolate_icon.png">
15 </div> 15 </div>
16 <div class="flex-item-10-percent"> 16 <div class="flex-item-10-percent">
17 <isolate-ref ref="{{ isolate }}"></isolate-ref> 17 <isolate-ref ref="{{ isolate }}"></isolate-ref>
18 </div> 18 </div>
19 <div class="flex-item-20-percent"> 19 <div class="flex-item-20-percent">
20 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state> 20 <isolate-run-state isolate="{{ isolate }}"></isolate-run-state>
21 </div> 21 </div>
22 <div class="flex-item-50-percent"> 22 <div class="flex-item-50-percent">
23 <isolate-location isolate="{{ isolate }}"></isolate-location> 23 <isolate-location isolate="{{ isolate }}"></isolate-location>
24 </div> 24 </div>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 .errorBox { 103 .errorBox {
104 background-color: #f5f5f5; 104 background-color: #f5f5f5;
105 border: 1px solid #ccc; 105 border: 1px solid #ccc;
106 padding: 10px; 106 padding: 10px;
107 font-family: consolas, courier, monospace; 107 font-family: consolas, courier, monospace;
108 font-size: 1em; 108 font-size: 1em;
109 line-height: 1.2em; 109 line-height: 1.2em;
110 white-space: pre; 110 white-space: pre;
111 } 111 }
112 </style> 112 </style>
113 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s"> 113 <link rel="stylesheet" href="css/shared.css">
114 <template if="{{ isolate.error != null }}"> 114 <template if="{{ isolate.error != null }}">
115 <div class="content-centered"> 115 <div class="content-centered">
116 <pre class="errorBox">{{ isolate.error.message }}</pre> 116 <pre class="errorBox">{{ isolate.error.message }}</pre>
117 <br> 117 <br>
118 </div> 118 </div>
119 </template> 119 </template>
120 <div class="flex-row"> 120 <div class="flex-row">
121 <div class="flex-item-10-percent"> 121 <div class="flex-item-10-percent">
122 </div> 122 </div>
123 <div class="flex-item-40-percent"> 123 <div class="flex-item-40-percent">
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 </div> 171 </div>
172 </template> 172 </template>
173 </polymer-element> 173 </polymer-element>
174 174
175 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 175 <polymer-element name="isolate-counter-chart" extends="observatory-element">
176 <template> 176 <template>
177 <div id="counterPieChart" style="height: 200px"></div> 177 <div id="counterPieChart" style="height: 200px"></div>
178 </template> 178 </template>
179 </polymer-element> 179 </polymer-element>
180 180
181 <script type="application/dart" src="isolate_summary.dart"></script> 181 <script type="application/dart;component=1" src="isolate_summary.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698