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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/navigation_bar.html

Issue 143973005: Code coverage in Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 11 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 <head> 1 <head>
2 <link rel="import" href="navigation_bar_isolate.html">
2 <link rel="import" href="observatory_element.html"> 3 <link rel="import" href="observatory_element.html">
3 </head> 4 </head>
4 <polymer-element name="navigation-bar" extends="observatory-element"> 5 <polymer-element name="navigation-bar" extends="observatory-element">
5 <template> 6 <template>
6 <nav class="navbar navbar-default" role="navigation"> 7 <nav class="navbar navbar-default" role="navigation">
7 <div class="navbar-header"> 8 <div class="navbar-header">
8 <a class="navbar-brand" href="">Observatory</a> 9 <a class="navbar-brand" href="#/isolates">Observatory</a>
9 </div> 10 </div>
10 <div class="collapse navbar-collapse navbar-ex1-collapse"> 11 <template if="{{ app.locationManager.hasCurrentIsolate }}">
11 </div> 12 <div class="collapse navbar-collapse navbar-ex1-collapse">
13 <navigation-bar-isolate app="{{ app }}"></navigation-bar-isolate>
14 </div>
15 </template>
12 </nav> 16 </nav>
13 </template> 17 </template>
14 <script type="application/dart" src="navigation_bar.dart"></script> 18 <script type="application/dart" src="navigation_bar.dart"></script>
15 </polymer-element> 19 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698