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

Side by Side Diff: runtime/bin/vmstats/vmstats.html

Issue 12377099: Added support for "bin-ified" vmstats web app source files (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Made model data immutable Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
3 for details. All rights reserved. Use of this source code is governed by a
4 BSD-style license that can be found in the LICENSE file.
5 -->
6 <html>
7 <head>
8 <meta charset="utf-8">
9 <title>VM Stats</title>
10 <link rel="stylesheet" href="vmstats.css">
11 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
12 </head>
13 <body>
14 <h1>VM Stats</h1>
15 <div id="vmstats">
16 <p id="dashboard">
17 <h3>Allocated Memory</h3>
18 <canvas id="graph" width="480px" height="240px"></canvas>
19 <h3>Isolates</h3>
20 <ul id="isolateList"></ul>
21 </p>
22 </div>
23 <div id="statusSection">
24 <p id="statusText"></p>
25 </div>
26
27 <script type="application/dart" src="vmstats.dart"></script>
28 <script src="packages/browser/dart.js"></script>
29 </body>
30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698