Chromium Code Reviews| Index: chrome/browser/resources/sync_file_system_internals/main.html |
| diff --git a/chrome/browser/resources/sync_file_system_internals/main.html b/chrome/browser/resources/sync_file_system_internals/main.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..28b65674153dc80da91306a5986f3a6726c359f7 |
| --- /dev/null |
| +++ b/chrome/browser/resources/sync_file_system_internals/main.html |
| @@ -0,0 +1,41 @@ |
| +<!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. |
| +--> |
| +<html i18n-values="dir:textdirection;"> |
| +<title>Quota Internals</title> |
| +<link rel="stylesheet" href="main.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="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"> |
|
arv (Not doing code reviews)
2013/04/23 18:54:33
I don't see where you are using a tree?
calvinlo
2013/04/24 07:53:23
Removed. I should have cleaned this up after I cop
|
| +<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> |
| + |
| +<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| + |
| +<tabbox> |
| + <tabs> |
| + <tab>Sync Service</tab> |
| + </tabs> |
| + <tabpanels> |
| + |
| + <tabpanel> |
| + <!-- Sync Service --> |
| + <h2>Sync Service</h2> |
| + </tabpanel> |
| + |
| + </tabpanels> |
| +</tabbox> |
| + |
| +</body> |
| +</html> |