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

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

Issue 965593002: Improved profiler view and inclusive profile tree (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/debugger.html
diff --git a/runtime/observatory/lib/src/elements/debugger.html b/runtime/observatory/lib/src/elements/debugger.html
index 9beb7fe75a191771af6a2f5b8ea58ee5040d921d..06731c59c01c819e60b2f0c1ecd00e136d46456d 100644
--- a/runtime/observatory/lib/src/elements/debugger.html
+++ b/runtime/observatory/lib/src/elements/debugger.html
@@ -23,6 +23,54 @@
</template>
</polymer-element>
+<polymer-element name="icon-chevron-right" noscript>
+ <template>
+ <svg width="24" height="24">
+ <path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
+ </svg>
+ </template>
+</polymer-element>
+
+<polymer-element name="icon-chevron-left" noscript>
+ <template>
+ <svg width="24" height="24">
+ <path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
+ </svg>
+ </template>
+</polymer-element>
+
+<polymer-element name="icon-horizontal-three-dot" noscript>
+ <template>
+ <svg width="24" height="24">
+ <path d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/>
+ </svg>
+ </template>
+</polymer-element>
+
+<polymer-element name="icon-vertical-three-dot" noscript>
+ <template>
+ <svg width="24" height="24">
+ <path d="M12 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z"/>
+ </svg>
+ </template>
+</polymer-element>
+
+<polymer-element name="icon-info" noscript>
+ <template>
+ <svg width="24" height="24">
+ <path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/>
+ </svg>
+ </template>
+</polymer-element>
+
+<polymer-element name="icon-info-outline" noscript>
+ <template>
+ <svg width="24" height="24">
+ <path d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/>
+ </svg>
+ </template>
+</polymer-element>
+
<polymer-element name="debugger-page" extends="observatory-element">
<template>
<link rel="stylesheet" href="css/shared.css">
« no previous file with comments | « runtime/observatory/lib/src/elements/css/shared.css ('k') | runtime/observatory/lib/src/elements/function_ref.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698