| Index: runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.html
|
| ===================================================================
|
| --- runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.html (revision 31232)
|
| +++ runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.html (working copy)
|
| @@ -1,4 +1,5 @@
|
| <head>
|
| + <link rel="import" href="breakpoint_list.html">
|
| <link rel="import" href="class_view.html">
|
| <link rel="import" href="code_view.html">
|
| <link rel="import" href="error_view.html">
|
| @@ -26,6 +27,9 @@
|
| <template if="{{ messageType == 'StackTrace' }}">
|
| <stack-trace app="{{ app }}" trace="{{ message }}"></stack-trace>
|
| </template>
|
| + <template if="{{ messageType == 'BreakpointList' }}">
|
| + <breakpoint-list app="{{ app }}" msg="{{ message }}"></breakpoint-list>
|
| + </template>
|
| <!-- If the message type is a RequestError -->
|
| <template if="{{ messageType == 'RequestError' }}">
|
| <error-view app="{{ app }}" error="{{ message['error'] }}"></error-view>
|
|
|