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

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

Issue 2204563003: Converted Observatory cpu-profile element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merged with master Created 4 years, 4 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="cpu_profile.html">
4 <link rel="import" href="eval_box.html"> 3 <link rel="import" href="eval_box.html">
5 <link rel="import" href="eval_link.html"> 4 <link rel="import" href="eval_link.html">
6 <link rel="import" href="field_ref.html"> 5 <link rel="import" href="field_ref.html">
7 <link rel="import" href="instance_ref.html"> 6 <link rel="import" href="instance_ref.html">
8 <link rel="import" href="script_inset.html"> 7 <link rel="import" href="script_inset.html">
9 8
10 <polymer-element name="class-view"> 9 <polymer-element name="class-view">
11 <template> 10 <template>
12 <link rel="stylesheet" href="css/shared.css"> 11 <link rel="stylesheet" href="css/shared.css">
13 <nav-bar> 12 <nav-bar>
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 </template> 250 </template>
252 <template if="{{ !cls.traceAllocations }}"> 251 <template if="{{ !cls.traceAllocations }}">
253 <div class="memberItem"> 252 <div class="memberItem">
254 <div class="memberName">Tracing allocations?</div> 253 <div class="memberName">Tracing allocations?</div>
255 <div class="memberValue"> 254 <div class="memberValue">
256 <span>No</span><action-link label="enable" callback="{{ toggleAllo cationTrace }}"></action-link> 255 <span>No</span><action-link label="enable" callback="{{ toggleAllo cationTrace }}"></action-link>
257 </div> 256 </div>
258 </div> 257 </div>
259 </template> 258 </template>
260 </div> 259 </div>
261 <sample-buffer-control id="sampleBufferControl"></sample-buffer-control> 260 <div id="sampleBufferControl"></div>
262 <br> 261 <br>
263 <stack-trace-tree-config id="stackTraceTreeConfig"></stack-trace-tree-conf ig> 262 <div id="stackTraceTreeConfig"></div>
264 <br> 263 <br>
265 <div class="flex-row centered"> 264 <div id="cpuProfileTree"></div>
266 <div class="flex-item-90-percent outlined" style="margin: 16px; margin-l eft: 8px; margin-right: 8px">
267 <cpu-profile-virtual-tree id="cpuProfileTree"></cpu-profile-virtual-tr ee>
268 </div>
269 </div>
270 </div> 265 </div>
271 266
272 <div class="content-centered-big"> 267 <div class="content-centered-big">
273 <hr> 268 <hr>
274 <source-inset location="{{ cls.location }}"> 269 <source-inset location="{{ cls.location }}">
275 </source-inset> 270 </source-inset>
276 </div> 271 </div>
277 272
278 <view-footer></view-footer> 273 <view-footer></view-footer>
279 </template> 274 </template>
280 </polymer-element> 275 </polymer-element>
281 276
282 <script type="application/dart" src="class_view.dart"></script> 277 <script type="application/dart" src="class_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/class_view.dart ('k') | runtime/observatory/lib/src/elements/cpu_profile.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698