Chromium Code Reviews| OLD | NEW |
|---|---|
| 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="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 </head> | 4 </head> |
| 5 <polymer-element name="isolate-profile" extends="observatory-element"> | 5 <polymer-element name="isolate-profile" extends="observatory-element"> |
| 6 <template> | 6 <template> |
| 7 <p> P R O F I L E </p> | 7 <p> P R O F I L E </p> |
| 8 <div> | 8 <div> |
| 9 <button type="button" on-click="{{refreshData}}">Refresh profile data</but ton> | 9 <button type="button" on-click="{{refreshData}}">Refresh profile data</but ton> |
| 10 <span>Top</span> | 10 <span>Top</span> |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 25 <tbody> | 25 <tbody> |
| 26 <tr template repeat="{{ code in topExclusiveCodes }}"> | 26 <tr template repeat="{{ code in topExclusiveCodes }}"> |
| 27 <td>{{ codeTicks(code, false) }}</td> | 27 <td>{{ codeTicks(code, false) }}</td> |
| 28 <td>{{ codePercent(code, false) }}</td> | 28 <td>{{ codePercent(code, false) }}</td> |
| 29 <td> | 29 <td> |
| 30 <span>{{ codeName(code) }}</span> | 30 <span>{{ codeName(code) }}</span> |
| 31 <code-ref app="{{ app }}" ref="{{ code.codeRef }}"></code-ref> | 31 <code-ref app="{{ app }}" ref="{{ code.codeRef }}"></code-ref> |
| 32 </td> | 32 </td> |
| 33 </tr> | 33 </tr> |
| 34 </table> | 34 </table> |
| 35 <blockquote><strong>Top Inclusive</strong></blockquote> | |
|
Cutch
2014/01/21 18:35:36
Tangent to this CL: Remove inclusive profile data
| |
| 36 <table class="table table-hover"> | |
| 37 <thead> | |
| 38 <tr> | |
| 39 <th>Ticks</th> | |
| 40 <th>Percent</th> | |
| 41 <th>Method</th> | |
| 42 </tr> | |
| 43 </thead> | |
| 44 <tbody> | |
| 45 <tr template repeat="{{ code in topInclusiveCodes }}"> | |
| 46 <td>{{ codeTicks(code, true) }}</td> | |
| 47 <td>{{ codePercent(code, true) }}</td> | |
| 48 <td> | |
| 49 <span>{{ codeName(code) }}</span> | |
| 50 <code-ref app="{{ app }}" ref="{{ code.codeRef }}"></code-ref> | |
| 51 </td> | |
| 52 </tr> | |
| 53 </table> | |
| 54 </template> | 35 </template> |
| 55 <script type="application/dart" src="isolate_profile.dart"></script> | 36 <script type="application/dart" src="isolate_profile.dart"></script> |
| 56 </polymer-element> | 37 </polymer-element> |
| OLD | NEW |