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

Unified Diff: chrome/browser/resources/quota_internals/index.html

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add descriptions Created 9 years, 7 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
Index: chrome/browser/resources/quota_internals/index.html
diff --git a/chrome/browser/resources/quota_internals/index.html b/chrome/browser/resources/quota_internals/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..2b18b5fb357be41819b9b63f2ccaa97347dae31f
--- /dev/null
+++ b/chrome/browser/resources/quota_internals/index.html
@@ -0,0 +1,64 @@
+<!DOCTYPE html>
+<!--
+Copyright (c) 2011 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.
+-->
+<title>Quota Internals</title>
+<link rel="stylesheet" href="quota-internals.css"/>
+<script src="chrome://resources/js/util.js"></script>
+<script src="chrome://resources/js/cr.js"></script>
+<script src="chrome://resources/js/cr/event_target.js"></script>
+
+<script src="quota-internals.js"></script>
+<script src="event_handler.js"></script>
+
+<div>Available Disk Space: <span id="diskspace-entry">N/A</span></div>
Evan Stade 2011/06/01 00:48:25 Is there a reason not to localize these strings? E
tzik 2011/06/03 16:13:47 Refering other chrome://***-internals/, we had loc
+
+<table id="globaldata-table">
+ <thead>
+ <tr>
+ <th>Type</th>
+ <th>Usage</th>
+ <th>Unlimitid Usage</th>
+ <th>Quota</th>
+ </tr>
+ </thead>
+ <tbody id="globaldata-entries" class="entries"></tbody>
+</table>
+
+<table id="hostdata-table">
+ <thead>
+ <tr>
+ <th>Host</th>
+ <th>Type</th>
+ <th>Usage</th>
+ <th>Quota</th>
+ </tr>
+ </thead>
+ <tbody id="host-entries" class="entries"></tbody>
+</table>
+
+<table id="origindata-table">
+ <thead>
+ <tr>
+ <th>Origin</th>
+ <th>Type</th>
+ <th>Host</th>
+ <th>In Use</th>
+ <th>Used Count</th>
+ <th>Last Access Time</th>
+ </tr>
+ </thead>
+ <tbody id="origin-entries" class="entries"></tbody>
+</table>
+
+<table id="stats-table">
+ <thead>
+ <tr>
+ <th>Key</th>
+ <th>Value</th>
+ </tr>
+ </thead>
+ <tbody id="stat-entries" class="entries"></tbody>
+</table>

Powered by Google App Engine
This is Rietveld 408576698