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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/code_view.html

Issue 299823004: Upgrade Observatory to Polymer 0.10.x (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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="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="packages/observatory/src/elements/css/shared.cs s"> 8 <link rel="stylesheet" href="css/shared.css">
9 <style> 9 <style>
10 div.flex-row:hover { 10 div.flex-row:hover {
11 background-color: #FFF3E3; 11 background-color: #FFF3E3;
12 } 12 }
13 13
14 .highlight { 14 .highlight {
15 background-color: #FFF3E3; 15 background-color: #FFF3E3;
16 } 16 }
17 17
18 .tooltip { 18 .tooltip {
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 </div> 155 </div>
156 </template> 156 </template>
157 <div class="flex-item-fixed-6-12 monospace"> 157 <div class="flex-item-fixed-6-12 monospace">
158 {{ instruction.human }} 158 {{ instruction.human }}
159 </div> 159 </div>
160 </template> 160 </template>
161 </div> 161 </div>
162 </template> 162 </template>
163 </div> 163 </div>
164 </template> 164 </template>
165 <script type="application/dart" src="code_view.dart"></script> 165 <script type="application/dart;component=1" src="code_view.dart"></script>
166 </polymer-element> 166 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698