- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / browser / resources / sync_file_system_internals / main.html
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>Sync File System 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 <script src="chrome://resources/js/cr/ui.js"></script>
18 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
20 <script src="chrome://syncfs-internals/utils.js"></script>
21
22 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
23
24 <tabbox>
25   <tabs>
26     <tab>Sync Service</tab>
27     <tab>Extension Statuses</tab>
28     <tab>File Metadata</tab>
29   </tabs>
30   <tabpanels>
31     <tabpanel>
32       <include src="sync_service.html" />
33     </tabpanel>
34     <tabpanel>
35       <include src="extension_statuses.html" />
36     </tabpanel>
37     <tabpanel>
38       <include src="file_metadata.html" />
39     </tabpanel>
40   </tabpanels>
41 </tabbox>
42
43 </body>
44 </html>