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

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

Issue 1063063006: Add links to Observatory documentation and bug tracking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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="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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/context_view.html ('k') | runtime/observatory/lib/src/elements/error_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698