blob: 4d756c49a61e9c2a50ab8c678c35ce87b45840d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<!DOCTYPE html>
<!--
Copyright 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<meta charset="utf-8">
<link rel="stylesheet" href="static/index.css">
<link rel="stylesheet" href="static/third_party/jqTree/jqtree.css">
<script src="static/third_party/flot/jquery.min.js"></script>
<script src="static/third_party/flot/jquery.flot.min.js"></script>
<script src="static/third_party/flot/jquery.flot.stack.min.js"></script>
<script src="static/third_party/jqTree/tree.jquery.js"></script>
<script src="static/utility.js"></script>
<script src="static/profiler.js"></script>
<script src="static/graph-view.js"></script>
<script src="static/dropdown-view.js"></script>
<script src="static/menu-view.js"></script>
<script src="static/index.js"></script>
<body>
<h2>Deep Memory Profiler Visulaizer</h2>
<form action="/" method="post">
<input type="file" action=name="data"/>
<input type="submit"/>
</form>
<div id="graph-div"></div>
<div id="info-div">
<div id="subs-dropdown"></div>
<div id="category-menu"></div>
</div>
</body>
|