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

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

Issue 965593002: Improved profiler view and inclusive profile tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="function_ref.html"> 2 <link rel="import" href="function_ref.html">
3 <link rel="import" href="nav_bar.html"> 3 <link rel="import" href="nav_bar.html">
4 <link rel="import" href="observatory_element.html"> 4 <link rel="import" href="observatory_element.html">
5 <link rel="import" href="script_inset.html"> 5 <link rel="import" href="script_inset.html">
6 <link rel="import" href="script_ref.html"> 6 <link rel="import" href="script_ref.html">
7 7
8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in 8 <!-- TODO(turnidge): Use core-icon once core_elements work properly in
9 devtools --> 9 devtools -->
10 <polymer-element name="icon-expand-less" noscript> 10 <polymer-element name="icon-expand-less" noscript>
11 <template> 11 <template>
12 <svg width="24" height="24"> 12 <svg width="24" height="24">
13 <polygon points="12,8 6,14 7.4,15.4 12,10.8 16.6,15.4 18,14 "/> 13 <polygon points="12,8 6,14 7.4,15.4 12,10.8 16.6,15.4 18,14 "/>
14 </svg> 14 </svg>
15 </template> 15 </template>
16 </polymer-element> 16 </polymer-element>
17 17
18 <polymer-element name="icon-expand-more" noscript> 18 <polymer-element name="icon-expand-more" noscript>
19 <template> 19 <template>
20 <svg width="24" height="24"> 20 <svg width="24" height="24">
21 <polygon points="16.6,8.6 12,13.2 7.4,8.6 6,10 12,16 18,10 "/> 21 <polygon points="16.6,8.6 12,13.2 7.4,8.6 6,10 12,16 18,10 "/>
22 </svg> 22 </svg>
23 </template> 23 </template>
24 </polymer-element> 24 </polymer-element>
25 25
26 <polymer-element name="icon-chevron-right" noscript>
27 <template>
28 <svg width="24" height="24">
29 <path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
30 </svg>
31 </template>
32 </polymer-element>
33
34 <polymer-element name="icon-chevron-left" noscript>
35 <template>
36 <svg width="24" height="24">
37 <path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
38 </svg>
39 </template>
40 </polymer-element>
41
42 <polymer-element name="icon-horizontal-three-dot" noscript>
43 <template>
44 <svg width="24" height="24">
45 <path d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 . 9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2- 2z"/>
46 </svg>
47 </template>
48 </polymer-element>
49
50 <polymer-element name="icon-vertical-three-dot" noscript>
51 <template>
52 <svg width="24" height="24">
53 <path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9 -2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z "/>
54 </svg>
55 </template>
56 </polymer-element>
57
58 <polymer-element name="icon-info" noscript>
59 <template>
60 <svg width="24" height="24">
61 <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2 zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/>
62 </svg>
63 </template>
64 </polymer-element>
65
66 <polymer-element name="icon-info-outline" noscript>
67 <template>
68 <svg width="24" height="24">
69 <path d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 1 0-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/>
70 </svg>
71 </template>
72 </polymer-element>
73
26 <polymer-element name="debugger-page" extends="observatory-element"> 74 <polymer-element name="debugger-page" extends="observatory-element">
27 <template> 75 <template>
28 <link rel="stylesheet" href="css/shared.css"> 76 <link rel="stylesheet" href="css/shared.css">
29 <style> 77 <style>
30 .container { 78 .container {
31 height: 100%; 79 height: 100%;
32 display: flex; 80 display: flex;
33 flex-direction: column; 81 flex-direction: column;
34 justify-content: space-between; 82 justify-content: space-between;
35 } 83 }
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 margin: 20px; 308 margin: 20px;
261 font: 400 16px consolas, courier, monospace; 309 font: 400 16px consolas, courier, monospace;
262 width: 95%; 310 width: 95%;
263 } 311 }
264 </style> 312 </style>
265 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus > 313 <input id="textBox" class="textBox" type="text" value="{{ text }}" autofocus >
266 </template> 314 </template>
267 </polymer-element> 315 </polymer-element>
268 316
269 <script type="application/dart" src="debugger.dart"></script> 317 <script type="application/dart" src="debugger.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/css/shared.css ('k') | runtime/observatory/lib/src/elements/function_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698