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

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: Removed tmp files 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="library_ref.html"> 7 <link rel="import" href="library_ref.html">
9 <link rel="import" href="script_inset.html"> 8 <link rel="import" href="script_inset.html">
10 9
11 <polymer-element name="class-view"> 10 <polymer-element name="class-view">
12 <template> 11 <template>
13 <link rel="stylesheet" href="css/shared.css"> 12 <link rel="stylesheet" href="css/shared.css">
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 </template> 251 </template>
253 <template if="{{ !cls.traceAllocations }}"> 252 <template if="{{ !cls.traceAllocations }}">
254 <div class="memberItem"> 253 <div class="memberItem">
255 <div class="memberName">Tracing allocations?</div> 254 <div class="memberName">Tracing allocations?</div>
256 <div class="memberValue"> 255 <div class="memberValue">
257 <span>No</span><action-link label="enable" callback="{{ toggleAllo cationTrace }}"></action-link> 256 <span>No</span><action-link label="enable" callback="{{ toggleAllo cationTrace }}"></action-link>
258 </div> 257 </div>
259 </div> 258 </div>
260 </template> 259 </template>
261 </div> 260 </div>
262 <sample-buffer-control id="sampleBufferControl"></sample-buffer-control> 261 <div id="sampleBufferControl"></div>
263 <br> 262 <br>
264 <stack-trace-tree-config id="stackTraceTreeConfig"></stack-trace-tree-conf ig> 263 <div id="stackTraceTreeConfig"></div>
265 <br> 264 <br>
266 <div class="flex-row centered"> 265 <div id="cpuProfileTree"></div>
267 <div class="flex-item-90-percent outlined" style="margin: 16px; margin-l eft: 8px; margin-right: 8px">
268 <cpu-profile-virtual-tree id="cpuProfileTree"></cpu-profile-virtual-tr ee>
269 </div>
270 </div>
271 </div> 266 </div>
272 267
273 <div class="content-centered-big"> 268 <div class="content-centered-big">
274 <hr> 269 <hr>
275 <source-inset location="{{ cls.location }}"> 270 <source-inset location="{{ cls.location }}">
276 </source-inset> 271 </source-inset>
277 </div> 272 </div>
278 273
279 <view-footer></view-footer> 274 <view-footer></view-footer>
280 </template> 275 </template>
281 </polymer-element> 276 </polymer-element>
282 277
283 <script type="application/dart" src="class_view.dart"></script> 278 <script type="application/dart" src="class_view.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698