| OLD | NEW |
| 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"> | 6 <link rel="import" href="sliding_checkbox.html"> |
| 7 <link rel="import" href="view_footer.html"> |
| 7 | 8 |
| 8 <polymer-element name="cpu-profile-table" extends="observatory-element"> | 9 <polymer-element name="cpu-profile-table" extends="observatory-element"> |
| 9 <template> | 10 <template> |
| 10 <link rel="stylesheet" href="css/shared.css"> | 11 <link rel="stylesheet" href="css/shared.css"> |
| 11 <nav-bar> | 12 <nav-bar> |
| 12 <top-nav-menu></top-nav-menu> | 13 <top-nav-menu></top-nav-menu> |
| 13 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> | 14 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> |
| 14 <nav-menu link="{{ makeLink('/profiler-table', isolate) }}" anchor="cpu pr
ofile (table)" last="{{ true }}"></nav-menu> | 15 <nav-menu link="{{ makeLink('/profiler-table', isolate) }}" anchor="cpu pr
ofile (table)" last="{{ true }}"></nav-menu> |
| 15 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 16 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 16 <nav-refresh callback="{{ clear }}" label="Clear"></nav-refresh> | 17 <nav-refresh callback="{{ clear }}" label="Clear"></nav-refresh> |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 <tr> | 458 <tr> |
| 458 <th>Method</th> | 459 <th>Method</th> |
| 459 <th>Executing</th> | 460 <th>Executing</th> |
| 460 </tr> | 461 </tr> |
| 461 </thead> | 462 </thead> |
| 462 <tbody id="treeBody"> | 463 <tbody id="treeBody"> |
| 463 </tbody> | 464 </tbody> |
| 464 </table> | 465 </table> |
| 465 </div> | 466 </div> |
| 466 </div> | 467 </div> |
| 468 <view-footer></view-footer> |
| 467 </template> | 469 </template> |
| 468 </polymer-element> | 470 </polymer-element> |
| 469 | 471 |
| 470 <script type="application/dart" src="cpu_profile.dart"></script> | 472 <script type="application/dart" src="cpu_profile.dart"></script> |
| OLD | NEW |