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

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

Issue 266043004: Small cleanup to Code and Profiler pages (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 <head> 1 <head>
2 <link rel="import" href="service_ref.html"> 2 <link rel="import" href="service_ref.html">
3 </head> 3 </head>
4 <polymer-element name="code-ref" extends="service-ref"> 4 <polymer-element name="code-ref" extends="service-ref">
5 <template> 5 <template>
6 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s"> 6 <link rel="stylesheet" href="packages/observatory/src/elements/css/shared.cs s">
7 <template if="{{ code.isDartCode }}"> 7 <template if="{{ code.isDartCode }}">
8 <a href="{{ url }}">{{ name }}</a> 8 <template if="{{ code.isOptimized }}">
9 <a href="{{ url }}">*{{ name }}</a>
10 </template>
11 <template if="{{ !code.isOptimized }}">
12 <a href="{{ url }}">{{ name }}</a>
13 </template>
9 </template> 14 </template>
10 <template if="{{ !code.isDartCode }}"> 15 <template if="{{ !code.isDartCode }}">
11 <span>{{ name }}</span> 16 <span>{{ name }}</span>
12 </template> 17 </template>
13 </template> 18 </template>
14 <script type="application/dart" src="code_ref.dart"></script> 19 <script type="application/dart" src="code_ref.dart"></script>
15 </polymer-element> 20 </polymer-element>
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/app/view_model.dart ('k') | runtime/bin/vmservice/client/lib/src/elements/code_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698