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

Unified Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.html

Issue 113513004: Handle vmservice messages while at breakpoint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
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>
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/observatory_elements/message_viewer.dart ('k') | runtime/include/dart_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698