OLD | NEW |
1 <head> | 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"> | 6 <link rel="import" href="sliding_checkbox.html"> |
7 </head> | 7 |
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="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
11 <nav-bar> | 11 <nav-bar> |
12 <top-nav-menu></top-nav-menu> | 12 <top-nav-menu></top-nav-menu> |
13 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> | 13 <isolate-nav-menu isolate="{{ profile.isolate }}"></isolate-nav-menu> |
14 <nav-menu link="{{ profile.isolate.relativeLink('profile') }}" anchor="cpu
profile" last="{{ true }}"></nav-menu> | 14 <nav-menu link="{{ profile.isolate.relativeLink('profile') }}" anchor="cpu
profile" last="{{ true }}"></nav-menu> |
15 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 15 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
16 <nav-control></nav-control> | 16 <nav-control></nav-control> |
17 </nav-bar> | 17 </nav-bar> |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 <div class="memberValue white">{{ row.tipTime }}</div> | 180 <div class="memberValue white">{{ row.tipTime }}</div> |
181 </div> | 181 </div> |
182 </div> | 182 </div> |
183 </div> | 183 </div> |
184 </td> | 184 </td> |
185 </tr> | 185 </tr> |
186 </tbody> | 186 </tbody> |
187 </table> | 187 </table> |
188 </div> | 188 </div> |
189 </template> | 189 </template> |
190 <script type="application/dart" src="isolate_profile.dart"></script> | |
191 </polymer-element> | 190 </polymer-element> |
| 191 |
| 192 <script type="application/dart" src="isolate_profile.dart"></script> |
OLD | NEW |