Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <link rel="import" href="function_ref.html"> | 1 <link rel="import" href="function_ref.html"> |
| 2 <link rel="import" href="instance_ref.html"> | 2 <link rel="import" href="instance_ref.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="nav_bar.html"> | 4 <link rel="import" href="nav_bar.html"> |
| 5 <link rel="import" href="script_ref.html"> | 5 <link rel="import" href="script_ref.html"> |
| 6 <polymer-element name="code-view" extends="observatory-element"> | 6 <polymer-element name="code-view" extends="observatory-element"> |
| 7 <template> | 7 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 8 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 9 <style> |
| 10 div.flex-row:hover { | 10 div.flex-row:hover { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 50 margin-left: 10px; | 50 margin-left: 10px; |
| 51 margin-right: 10px; | 51 margin-right: 10px; |
| 52 } | 52 } |
| 53 | 53 |
| 54 </style> | 54 </style> |
| 55 <nav-bar> | 55 <nav-bar> |
| 56 <top-nav-menu></top-nav-menu> | 56 <top-nav-menu></top-nav-menu> |
| 57 <isolate-nav-menu isolate="{{ code.isolate }}"></isolate-nav-menu> | 57 <isolate-nav-menu isolate="{{ code.isolate }}"></isolate-nav-menu> |
| 58 <nav-menu link="." anchor="{{ code.name }}" last="{{ true }}"></nav-menu> | 58 <nav-menu link="." anchor="{{ code.name }}" last="{{ true }}"></nav-menu> |
| 59 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 59 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 60 <nav-control></nav-control> | |
|
turnidge
2014/06/04 18:02:24
Did you make sure to add nav-control everywhere?
Cutch
2014/06/04 20:28:57
Just double checked. I had missed the error pages,
| |
| 60 </nav-bar> | 61 </nav-bar> |
| 61 <div class="content"> | 62 <div class="content"> |
| 62 <template if="{{ code.isDartCode && code.isOptimized }}"> | 63 <template if="{{ code.isDartCode && code.isOptimized }}"> |
| 63 <h1>Optimized code for {{ code.name }}</h1> | 64 <h1>Optimized code for {{ code.name }}</h1> |
| 64 </template> | 65 </template> |
| 65 <template if="{{ !(code.isDartCode && code.isOptimized) }}"> | 66 <template if="{{ !(code.isDartCode && code.isOptimized) }}"> |
| 66 <h1>Code for {{ code.name }}</h1> | 67 <h1>Code for {{ code.name }}</h1> |
| 67 </template> | 68 </template> |
| 68 <div class="memberList"> | 69 <div class="memberList"> |
| 69 <div class="memberItem"> | 70 <div class="memberItem"> |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 157 <div class="flex-item-fixed-6-12 monospace"> | 158 <div class="flex-item-fixed-6-12 monospace"> |
| 158 {{ instruction.human }} | 159 {{ instruction.human }} |
| 159 </div> | 160 </div> |
| 160 </template> | 161 </template> |
| 161 </div> | 162 </div> |
| 162 </template> | 163 </template> |
| 163 </div> | 164 </div> |
| 164 </template> | 165 </template> |
| 165 <script type="application/dart" src="code_view.dart"></script> | 166 <script type="application/dart" src="code_view.dart"></script> |
| 166 </polymer-element> | 167 </polymer-element> |
| OLD | NEW |