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

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

Issue 1833453004: Dramatically increase the performance of Observatory's profile UI (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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/observatory/lib/src/elements/cpu_profile.html
diff --git a/runtime/observatory/lib/src/elements/cpu_profile.html b/runtime/observatory/lib/src/elements/cpu_profile.html
index d76cb19ca950c79af49088a385ab5dd321fa0b79..68eb99a7de517a68e2c678cb728ee84cec86329d 100644
--- a/runtime/observatory/lib/src/elements/cpu_profile.html
+++ b/runtime/observatory/lib/src/elements/cpu_profile.html
@@ -237,6 +237,20 @@
</template>
</polymer-element>
+<polymer-element name="cpu-profile-virtual-tree" extends="observatory-element">
+ <template>
+ <link rel="stylesheet" href="css/shared.css">
+ <style>
+ .full {
+ height: 50%;
+ width: 100%;
+ }
+ </style>
+ <div id="tree" class="full"></div>
+ </template>
+</polymer-element>
+
+
<polymer-element name="cpu-profile-table" extends="observatory-element">
<template>
<link rel="stylesheet" href="css/shared.css">
@@ -472,12 +486,7 @@
<br>
<stack-trace-tree-config id="stackTraceTreeConfig"></stack-trace-tree-config>
<br>
- <div class="content-centered-big">
- <div class="tableWell shadow">
- <cpu-profile-tree id="cpuProfileTree"></cpu-profile-tree>
- </div>
- </div>
- <view-footer></view-footer>
+ <cpu-profile-virtual-tree class="shadow" id="cpuProfileVirtualTree"></cpu-profile-virtual-tree>
</template>
</polymer-element>
« no previous file with comments | « runtime/observatory/lib/src/elements/cpu_profile.dart ('k') | runtime/observatory/lib/src/elements/nav_bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698