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

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

Issue 192443004: Complete the switch to ServiceObject (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
index 79b7516116af29cd89622d8c9151f0747383f1f9..5f2b4834afafc17fcba9fe8a1860f0a217014d1d 100644
--- a/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
+++ b/runtime/bin/vmservice/client/lib/src/elements/disassembly_entry.html
@@ -3,12 +3,19 @@
</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">{{ instruction.formattedTicks() }}</div>
- <div class="col-md-2">{{ instruction.formattedAddress() }}</div>
- <div class="col-md-4">
- <code>{{ instruction.machine }} {{ instruction.human }}</code>
- </div>
+ <div class="col-md-2 monospace">{{ instruction.formattedAddress() }}</div>
+ <div class="col-md-2 monospace">{{ instruction.formattedInclusive(code) }}</div>
+ <div class="col-md-2 monospace">{{ instruction.formattedExclusive(code) }}</div>
+ <div class="col-md-6 monospace">{{ instruction.human }}</div>
</div>
</template>
<script type="application/dart" src="disassembly_entry.dart"></script>

Powered by Google App Engine
This is Rietveld 408576698