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

Unified Diff: runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html

Issue 197803004: Add dead CodeRegionTable for tracking overwritten Dart code (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/bin/vmservice/client/lib/src/elements/disassembly_entry.html
diff --git a/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html b/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
deleted file mode 100644
index d930c9761ef76651feb5cd0ef7173d1dc7ebb13a..0000000000000000000000000000000000000000
--- a/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<head>
- <link rel="import" href="observatory_element.html">
-</head>
-<polymer-element name="disassembly-entry" extends="observatory-element">
- <template>
- <style>
- .monospace {
- font-family: consolas, courier, monospace;
- font-size: 1em;
- line-height: 1.2em;
- white-space: nowrap;
- }
- </style>
- <div class="row">
- <div class="col-md-2 monospace">{{ instruction.formattedInclusive(code) }}</div>
- <div class="col-md-2 monospace">{{ instruction.formattedExclusive(code) }}</div>
- <div class="col-md-2 monospace">{{ instruction.formattedAddress() }}</div>
- <div class="col-md-6 monospace">{{ instruction.human }}</div>
- </div>
- </template>
- <script type="application/dart" src="disassembly_entry.dart"></script>
-</polymer-element>

Powered by Google App Engine
This is Rietveld 408576698