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

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

Issue 1087833005: Add annotation for function declarations. Mark functions with performance problems in red. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/script_inset.html
diff --git a/runtime/observatory/lib/src/elements/script_inset.html b/runtime/observatory/lib/src/elements/script_inset.html
index ac7262c4022410c994b7d5272ee8de878d0b14f5..66aa7770c869df701e193a24c30cd76060527d6c 100644
--- a/runtime/observatory/lib/src/elements/script_inset.html
+++ b/runtime/observatory/lib/src/elements/script_inset.html
@@ -39,18 +39,12 @@
color: #a8a8a8;
}
.hitsNotExecuted {
- background-color: #e66;
+ background-color: #EEA7A7;
}
.hitsExecuted {
- background-color: #6d6;
+ background-color: #9BDD9B;
}
- </style>
- </template>
-</polymer-element>
-<polymer-element name="breakpoint-toggle" extends="observatory-element">
- <template>
- <style>
.emptyBreakpoint, .possibleBreakpoint, .busyBreakpoint, .unresolvedBreakpoint, .resolvedBreakpoint {
display: table-cell;
vertical-align: top;
@@ -80,39 +74,6 @@
background-color: #e66;
}
</style>
-
- <template if="{{ line == null }}">
- <div class="emptyBreakpoint">&nbsp;</div>
- </template>
-
- <template if="{{ line != null }}">
- <template if="{{ line.possibleBpt && busy}}">
- <div class="busyBreakpoint">B</div>
- </template>
-
- <template if="{{ line.breakpoints == null && !line.possibleBpt }}">
- <div class="emptyBreakpoint">&nbsp;</div>
- </template>
-
- <template if="{{ line.breakpoints == null && line.possibleBpt && !busy}}">
- <div class="possibleBreakpoint">
- <a on-click="{{ toggleBreakpoint }}">B</a>
- </div>
- </template>
-
- <template if="{{ line.breakpoints != null && !line.breakpointResolved && !busy}}">
- <div class="unresolvedBreakpoint">
- <a on-click="{{ toggleBreakpoint }}">B</a>
- </div>
- </template>
-
- <template if="{{ line.breakpoints != null && line.breakpointResolved && !busy}}">
- <div class="resolvedBreakpoint">
- <a on-click="{{ toggleBreakpoint }}">B</a>
- </div>
- </template>
- </template> <!-- line != null -->
-
</template>
</polymer-element>
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698