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

Unified 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: Final code review changes 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/vmstats/vmstats.dart ('k') | runtime/bin/vmstats_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmstats/vmstats.html
===================================================================
--- runtime/bin/vmstats/vmstats.html (revision 0)
+++ runtime/bin/vmstats/vmstats.html (revision 0)
@@ -0,0 +1,30 @@
+<!DOCTYPE html>
+<!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
+ for details. All rights reserved. Use of this source code is governed by a
+ BSD-style license that can be found in the LICENSE file.
+-->
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>VM Stats</title>
+ <link rel="stylesheet" href="vmstats.css">
+ <script type="text/javascript" src="https://www.google.com/jsapi"></script>
+ </head>
+ <body>
+ <h1>VM Stats</h1>
+ <div id="vmstats">
+ <p id="dashboard">
+ <h3>Allocated Memory</h3>
+ <canvas id="graph" width="480px" height="240px"></canvas>
+ <h3>Isolates</h3>
+ <ul id="isolateList"></ul>
+ </p>
+ </div>
+ <div id="statusSection">
+ <p id="statusText"></p>
+ </div>
+
+ <script type="application/dart" src="vmstats.dart"></script>
+ <script src="packages/browser/dart.js"></script>
+ </body>
+</html>
« no previous file with comments | « runtime/bin/vmstats/vmstats.dart ('k') | runtime/bin/vmstats_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698