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

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

Issue 2119733003: Wrapping leaf nodes in non polymer elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Converted error-ref tag Created 4 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="code_ref.html"> 2 <link rel="import" href="code_ref.html">
3 <link rel="import" href="function_ref.html"> 3 <link rel="import" href="function_ref.html">
4 <link rel="import" href="nav_bar.html"> 4 <link rel="import" href="nav_bar.html">
5 <link rel="import" href="observatory_element.html"> 5 <link rel="import" href="observatory_element.html">
6 <link rel="import" href="sliding_checkbox.html">
7 <link rel="import" href="view_footer.html">
8 6
9 <polymer-element name="sample-buffer-control" extends="observatory-element"> 7 <polymer-element name="sample-buffer-control" extends="observatory-element">
10 <template> 8 <template>
11 <link rel="stylesheet" href="css/shared.css"> 9 <link rel="stylesheet" href="css/shared.css">
12 <style> 10 <style>
13 .statusMessage { 11 .statusMessage {
14 font-size: 150%; 12 font-size: 150%;
15 font-weight: bold; 13 font-weight: bold;
16 } 14 }
17 15
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 </style> 508 </style>
511 <sample-buffer-control id="sampleBufferControl"></sample-buffer-control> 509 <sample-buffer-control id="sampleBufferControl"></sample-buffer-control>
512 <br> 510 <br>
513 <stack-trace-tree-config id="stackTraceTreeConfig"></stack-trace-tree-config > 511 <stack-trace-tree-config id="stackTraceTreeConfig"></stack-trace-tree-config >
514 <br> 512 <br>
515 <cpu-profile-virtual-tree id="cpuProfileVirtualTree"></cpu-profile-virtual-t ree> 513 <cpu-profile-virtual-tree id="cpuProfileVirtualTree"></cpu-profile-virtual-t ree>
516 </template> 514 </template>
517 </polymer-element> 515 </polymer-element>
518 516
519 <script type="application/dart" src="cpu_profile.dart"></script> 517 <script type="application/dart" src="cpu_profile.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698