Chromium Code Reviews| Index: tools/deep_memory_profiler/visualizer/index.html |
| diff --git a/tools/deep_memory_profiler/visualizer/index.html b/tools/deep_memory_profiler/visualizer/index.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f3fa8114d3d097da5f2937092cd1a94fb3f0d244 |
| --- /dev/null |
| +++ b/tools/deep_memory_profiler/visualizer/index.html |
| @@ -0,0 +1,29 @@ |
| +<!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="../../../third_party/flot/jquery.min.js"></script> |
| +<script src="../../../third_party/flot/jquery.flot.min.js"></script> |
| +<script src="../../../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> |
| + <div id="graph-div"></div> |
| + <div id="info-div"> |
| + <div id="subs-dropdown"></div> |
| + <div id="category-menu"></div> |
| + </div> |
| +</body> |
|
sullivan
2013/09/05 14:42:06
Sorry I'm a little confused, but didn't you just d
|