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

Side by Side Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 1250853006: Logging page (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 5 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
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
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 <polymer-element name="isolate-summary" extends="observatory-element"> 8 <polymer-element name="isolate-summary" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="css/shared.css"> 10 <link rel="stylesheet" href="css/shared.css">
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 <div class="memberItem"> 184 <div class="memberItem">
185 <div class="memberValue"> 185 <div class="memberValue">
186 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a> 186 See <a on-click="{{ goto }}" _href="{{ gotoLink('/heap-snapshot', is olate) }}">heap snapshot</a>
187 </div> 187 </div>
188 </div> 188 </div>
189 <div class="memberItem"> 189 <div class="memberItem">
190 <div class="memberValue"> 190 <div class="memberValue">
191 See <a on-click="{{ goto }}" _href="{{ gotoLink('/ports', isolate) } }">ports</a> 191 See <a on-click="{{ goto }}" _href="{{ gotoLink('/ports', isolate) } }">ports</a>
192 </div> 192 </div>
193 </div> 193 </div>
194 <div class="memberItem">
195 <div class="memberValue">
196 See <a on-click="{{ goto }}" _href="{{ gotoLink('/logging', isolate) }}">logging</a>
197 </div>
198 </div>
194 <!-- Temporarily disabled until UI for dart:io is acceptable. 199 <!-- Temporarily disabled until UI for dart:io is acceptable.
195 <template if="{{ isolate.ioEnabled }}"> 200 <template if="{{ isolate.ioEnabled }}">
196 <div class="memberItem"> 201 <div class="memberItem">
197 <div class="memberValue"> 202 <div class="memberValue">
198 See <a on-click="{{ goto }}" href="{{ gotoLink('/io', isolate) }}" >dart:io</a> 203 See <a on-click="{{ goto }}" href="{{ gotoLink('/io', isolate) }}" >dart:io</a>
199 </div> 204 </div>
200 </div> 205 </div>
201 </template> 206 </template>
202 --> 207 -->
203 </div> 208 </div>
204 <div class="flex-item-10-percent"> 209 <div class="flex-item-10-percent">
205 </div> 210 </div>
206 </div> 211 </div>
207 </template> 212 </template>
208 </polymer-element> 213 </polymer-element>
209 214
210 <polymer-element name="isolate-counter-chart" extends="observatory-element"> 215 <polymer-element name="isolate-counter-chart" extends="observatory-element">
211 <template> 216 <template>
212 <div id="counterPieChart" style="height: 200px"></div> 217 <div id="counterPieChart" style="height: 200px"></div>
213 </template> 218 </template>
214 </polymer-element> 219 </polymer-element>
215 220
216 <script type="application/dart" src="isolate_summary.dart"></script> 221 <script type="application/dart" src="isolate_summary.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/app/page.dart ('k') | runtime/observatory/lib/src/elements/logging.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698