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

Side by Side Diff: tools/deep_memory_profiler/visualizer/index.html

Issue 23933002: Fill json data in index.html template for dmprof visualizer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review problems Created 7 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <meta charset="utf-8">
8 <link rel="stylesheet" href="index.css">
9 <link rel="stylesheet" href="third_party/jqTree/jqtree.css">
10
11 <script src="../../../third_party/flot/jquery.min.js"></script>
12 <script src="../../../third_party/flot/jquery.flot.min.js"></script>
13 <script src="../../../third_party/flot/jquery.flot.stack.min.js"></script>
14 <script src="third_party/jqTree/tree.jquery.js"></script>
15 <script src="utility.js"></script>
16 <script src="profiler.js"></script>
17 <script src="graph-view.js"></script>
18 <script src="dropdown-view.js"></script>
19 <script src="menu-view.js"></script>
20 <script src="index.js"></script>
21
22 <body>
23 <h2>Deep Memory Profiler Visulaizer</h2>
24 <div id="graph-div"></div>
25 <div id="info-div">
26 <div id="subs-dropdown"></div>
27 <div id="category-menu"></div>
28 </div>
29 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698