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

Unified Diff: runtime/observatory/lib/src/elements/isolate_summary.html

Issue 2304463002: Converted Observatory vm-view && isolate-view elements (Closed)
Patch Set: Fixed typo Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: runtime/observatory/lib/src/elements/isolate_summary.html
diff --git a/runtime/observatory/lib/src/elements/isolate_summary.html b/runtime/observatory/lib/src/elements/isolate_summary.html
deleted file mode 100644
index d34a7087e85284727108426482d512c4d3315a2a..0000000000000000000000000000000000000000
--- a/runtime/observatory/lib/src/elements/isolate_summary.html
+++ /dev/null
@@ -1,87 +0,0 @@
-<link rel="import" href="../../../../packages/polymer/polymer.html">
-<link rel="import" href="action_link.html">
-
-<polymer-element name="isolate-summary">
- <template>
- <link rel="stylesheet" href="css/shared.css">
- <div class="flex-row">
- <div>
- <isolate-ref ref="{{ isolate }}"></isolate-ref>
- </div>
- <div style="flex:1"></div>
- <div>
- <isolate-run-state isolate="{{ isolate }}"></isolate-run-state>
- <isolate-location isolate="{{ isolate }}"></isolate-location>
- [<a on-click="{{ goto }}" _href="{{ gotoLink('/debugger', isolate) }}">debug</a>]
- </div>
- </div>
- <br>
- <isolate-shared-summary isolate="{{ isolate }}"></isolate-shared-summary>
- </template>
-</polymer-element>
-
-<polymer-element name="isolate-run-state">
- <template>
- <template if="{{ isolate.paused }}">
- <strong title="{{ isolate.pauseEvent.timestamp.toString() }}">paused</strong>
- </template>
-
- <template if="{{ isolate.running }}">
- <strong>running</strong>
- </template>
-
- <template if="{{ isolate.idle }}">
- <strong>idle</strong>
- </template>
-
- <template if="{{ isolate.loading }}">
- <strong>loading...</strong>
- </template>
- </template>
-</polymer-element>
-
-<polymer-element name="isolate-location">
- <template>
- <template if="{{ isolate.pauseEvent != null }}">
- <template if="{{ isolate.pauseEvent.kind == 'PauseStart' }}">
- at isolate start
- </template>
-
- <template if="{{ isolate.pauseEvent.kind == 'PauseExit' }}">
- at isolate exit
- </template>
-
- <template if="{{ isolate.pauseEvent.kind == 'None' }}">
- not yet runnable
- </template>
-
- <template if="{{ isolate.pauseEvent.kind == 'PauseInterrupted' ||
- isolate.pauseEvent.kind == 'PauseBreakpoint' ||
- isolate.pauseEvent.kind == 'PauseException' }}">
- <template if="{{ isolate.pauseEvent.breakpoint != null }}">
- by breakpoint
- </template>
- <template if="{{ isolate.pauseEvent.kind == 'PauseException' }}">
- by exception
- </template>
- <template if="{{ isolate.topFrame != null }}">
- at
- <function-ref ref="{{ isolate.topFrame.function }}">
- </function-ref>
- (<source-link location="{{ isolate.topFrame.location }}">
- </source-link>)
- </template>
- </template>
- </template>
-
- <template if="{{ isolate.running }}">
- at
- <function-ref ref="{{ isolate.topFrame.function }}">
- </function-ref>
- (<source-link location="{{ isolate.topFrame.location }}"></source-link>)
- </template>
-
- </template>
-</polymer-element>
-
-<script type="application/dart" src="isolate_summary.dart"></script>
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_summary.dart ('k') | runtime/observatory/lib/src/elements/isolate_view.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698