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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.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="breakpoint_list.html"> 2 <link rel="import" href="breakpoint_list.html">
3 <link rel="import" href="class_view.html"> 3 <link rel="import" href="class_view.html">
4 <link rel="import" href="code_view.html"> 4 <link rel="import" href="code_view.html">
5 <link rel="import" href="error_view.html"> 5 <link rel="import" href="error_view.html">
6 <link rel="import" href="field_view.html"> 6 <link rel="import" href="field_view.html">
7 <link rel="import" href="function_view.html"> 7 <link rel="import" href="function_view.html">
8 <link rel="import" href="instance_view.html"> 8 <link rel="import" href="instance_view.html">
9 <link rel="import" href="isolate_list.html"> 9 <link rel="import" href="isolate_list.html">
10 <link rel="import" href="json_view.html"> 10 <link rel="import" href="json_view.html">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 <template if="{{ messageType == 'Smi' }}"> 61 <template if="{{ messageType == 'Smi' }}">
62 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view> 62 <instance-view app="{{ app }}" instance="{{ message }}"></instance-view>
63 </template> 63 </template>
64 <template if="{{ messageType == 'Function' }}"> 64 <template if="{{ messageType == 'Function' }}">
65 <function-view app="{{ app }}" function="{{ message }}"></function-view> 65 <function-view app="{{ app }}" function="{{ message }}"></function-view>
66 </template> 66 </template>
67 <template if="{{ messageType == 'Code' }}"> 67 <template if="{{ messageType == 'Code' }}">
68 <code-view app="{{ app }}" code="{{ message['code'] }}"></code-view> 68 <code-view app="{{ app }}" code="{{ message['code'] }}"></code-view>
69 </template> 69 </template>
70 <template if="{{ messageType == 'Script' }}"> 70 <template if="{{ messageType == 'Script' }}">
71 <script-view app="{{ app }}" script="{{ message }}"></script-view> 71 <script-view app="{{ app }}" script="{{ message['script'] }}"></script-vie w>
72 </template> 72 </template>
73 <template if="{{ messageType == 'CPU' }}"> 73 <template if="{{ messageType == 'CPU' }}">
74 <json-view json="{{ message }}"></json-view> 74 <json-view json="{{ message }}"></json-view>
75 </template> 75 </template>
76 <!-- Add new views and message types in the future here. --> 76 <!-- Add new views and message types in the future here. -->
77 </template> 77 </template>
78 <script type="application/dart" src="message_viewer.dart"></script> 78 <script type="application/dart" src="message_viewer.dart"></script>
79 </polymer-element> 79 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698