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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/isolate_profile.html

Issue 266043004: Small cleanup to Code and Profiler pages (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 <head> 1 <head>
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"> 6 <link rel="import" href="sliding_checkbox.html">
7 </head> 7 </head>
8 <polymer-element name="isolate-profile" extends="observatory-element"> 8 <polymer-element name="isolate-profile" extends="observatory-element">
9 <template> 9 <template>
10 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s"> 10 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s">
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 <tr> 145 <tr>
146 <th>Method</th> 146 <th>Method</th>
147 <th>Self</th> 147 <th>Self</th>
148 </tr> 148 </tr>
149 </thead> 149 </thead>
150 <tbody> 150 <tbody>
151 <tr template repeat="{{row in tree.rows }}" style="{{}}"> 151 <tr template repeat="{{row in tree.rows }}" style="{{}}">
152 <td on-click="{{toggleExpanded}}" 152 <td on-click="{{toggleExpanded}}"
153 class="{{ coloring(row) }}" 153 class="{{ coloring(row) }}"
154 style="{{ padding(row) }}"> 154 style="{{ padding(row) }}">
155 <span id="expand" style="cursor: pointer;">{{ row.expander }}</spa n> 155 <span id="expand" style="{{ row.expanderStyle }}">{{ row.expander }}</span>
156 <div style="position: relative;display: inline"> 156 <div style="position: relative;display: inline">
157 {{row.columns[0]}} 157 {{row.columns[0]}}
158 </div> 158 </div>
159 <code-ref ref="{{ row.code }}"></code-ref> 159 <code-ref ref="{{ row.code }}"></code-ref>
160 </td> 160 </td>
161 <td class="{{ coloring(row) }}" style="position: relative"> 161 <td class="{{ coloring(row) }}" style="position: relative">
162 {{row.columns[1]}} 162 {{row.columns[1]}}
163 <div class="tooltip"> 163 <div class="tooltip">
164 <div class="memberList"> 164 <div class="memberList">
165 <div class="memberItem"> 165 <div class="memberItem">
(...skipping 15 matching lines...) Expand all
181 </div> 181 </div>
182 </div> 182 </div>
183 </td> 183 </td>
184 </tr> 184 </tr>
185 </tbody> 185 </tbody>
186 </table> 186 </table>
187 </div> 187 </div>
188 </template> 188 </template>
189 <script type="application/dart" src="isolate_profile.dart"></script> 189 <script type="application/dart" src="isolate_profile.dart"></script>
190 </polymer-element> 190 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698