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

Side by Side 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: tzik review #1 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 Copyright 2013 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
7 <html i18n-values="dir:textdirection;">
8 <title>Quota Internals</title>
9 <link rel="stylesheet" href="main.css">
10
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/cr/event_target.js"></script>
14 <script src="chrome://resources/js/i18n_template.js"></script>
15
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
17 <link rel="stylesheet" href="chrome://resources/css/tree.css">
18 <script src="chrome://resources/js/cr/ui.js"></script>
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
20 <script src="chrome://resources/js/cr/ui/tree.js"></script>
21 <script src="chrome://resources/css/tree.css.js"></script>
22 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
23
24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
25
26 <tabbox>
27 <tabs>
28 <tab>Sync Service</tab>
29 </tabs>
30 <tabpanels>
31
32 <tabpanel>
33 <!-- Sync Service -->
34 <h2>Sync Service</h2>
35 </tabpanel>
36
37 </tabpanels>
38 </tabbox>
39
40 </body>
41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698