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

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

Issue 308673012: Redo LocationManager to use HTML5 History API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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="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
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>
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698