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

Unified Diff: chrome/browser/resources/sync_file_system_internals/main.html

Issue 14084008: Boilerplate code to add chrome://syncfs-internals page for debugging. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase with similarity=20 Created 7 years, 8 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/sync_file_system_internals/main.html
diff --git a/chrome/browser/resources/quota_internals/main.html b/chrome/browser/resources/sync_file_system_internals/main.html
similarity index 39%
copy from chrome/browser/resources/quota_internals/main.html
copy to chrome/browser/resources/sync_file_system_internals/main.html
index 62984748e5c380d9ff4a3c11c15adb15fa740aa3..554df0a009f8187c0b875a3885f061d915557345 100644
--- a/chrome/browser/resources/quota_internals/main.html
+++ b/chrome/browser/resources/sync_file_system_internals/main.html
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<!--
-Copyright (c) 2011 The Chromium Authors. All rights reserved.
+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.
-->
<html i18n-values="dir:textdirection;">
-<title>Quota Internals</title>
+<title>Sync File System Internals</title>
<link rel="stylesheet" href="main.css">
<script src="chrome://resources/js/util.js"></script>
@@ -14,60 +14,23 @@ found in the LICENSE file.
<script src="chrome://resources/js/i18n_template.js"></script>
<link rel="stylesheet" href="chrome://resources/css/tabs.css">
-<link rel="stylesheet" href="chrome://resources/css/tree.css">
<script src="chrome://resources/js/cr/ui.js"></script>
<script src="chrome://resources/js/cr/ui/tabs.js"></script>
-<script src="chrome://resources/js/cr/ui/tree.js"></script>
-<script src="chrome://resources/css/tree.css.js"></script>
<script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
-<script src="chrome://quota-internals/message_dispatcher.js"></script>
-<script src="chrome://quota-internals/event_handler.js"></script>
-
<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
<tabbox>
<tabs>
- <tab>Summary</tab>
- <tab>Usage &amp; Quota</tab>
- <tab>Data</tab>
+ <tab>Sync Service</tab>
</tabs>
<tabpanels>
+
<tabpanel>
- <!-- Summary -->
- <h2>Summary</h2>
- <table>
- <tbody>
- <tr>
- <td>Free disk space for the profile directory.</td>
- <td id="diskspace-entry">N/A</td>
- </tr>
- </tbody>
- </table>
- <h2>Misc Statistics</h2>
- <table>
- <tbody id="stat-entries" class="entries"></tbody>
- </table>
- </tabpanel>
-
- <tabpanel>
- <!-- Usage and Quota -->
- <h2>Usage and Quota Database Browser</h2>
- <div id="tree-view-container">
- <button id="refresh-button">Refresh</button>
- <tree id="tree-view"></tree>
- </div>
- <table>
- <thead></thead>
- <tbody id="tree-item-description"></tbody>
- </table>
- </tabpanel>
-
- <tabpanel>
- <!-- Data -->
- <button id="dump-button">Dump</button>
- <pre id="dump-field"></pre>
+ <!-- Sync Service -->
+ <h2>Sync Service</h2>
</tabpanel>
+
</tabpanels>
</tabbox>

Powered by Google App Engine
This is Rietveld 408576698