Home | History | Annotate | Download | only in sync_internals
      1 <!DOCTYPE HTML>
      2 <html i18n-values="dir:textdirection;">
      3 <head>
      4 <!-- If you change the title, make sure you also update
      5 chrome/test/functional/special_tabs.py. -->
      6 <meta charset="utf-8">
      7 <title>Sync Internals</title>
      8 <link rel="stylesheet" href="chrome://resources/css/list.css">
      9 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
     10 <link rel="stylesheet" href="chrome://resources/css/tree.css">
     11 <link rel="stylesheet" href="about.css">
     12 <link rel="stylesheet" href="sync_search.css">
     13 <link rel="stylesheet" href="sync_node_browser.css">
     14 
     15 <script src="chrome://resources/css/tree.css.js"></script>
     16 
     17 <script src="chrome://resources/js/event_tracker.js"></script>
     18 <script src="chrome://resources/js/cr.js"></script>
     19 <script src="chrome://resources/js/cr/event_target.js"></script>
     20 <script src="chrome://resources/js/cr/ui/touch_handler.js"></script>
     21 <script src="chrome://resources/js/cr/ui.js"></script>
     22 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
     23 <script src="chrome://resources/js/cr/ui/splitter.js"></script>
     24 
     25 <!-- List stuff. -->
     26 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
     27 <script src="chrome://resources/js/cr/ui/list_item.js"></script>
     28 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
     29 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
     30 <script src="chrome://resources/js/cr/ui/list.js"></script>
     31 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
     32 <script src="chrome://resources/js/cr/ui/tree.js"></script>
     33 <script src="chrome://resources/js/util.js"></script>
     34 <script src="chrome://sync-internals/chrome_sync.js"></script>
     35 <script src="chrome://sync-internals/about.js"></script>
     36 <script src="chrome://sync-internals/sync_log.js"></script>
     37 <script src="chrome://sync-internals/sync_node_browser.js"></script>
     38 <script src="chrome://sync-internals/sync_search.js"></script>
     39 <script src="chrome://sync-internals/strings.js"></script>
     40 </head>
     41 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
     42 
     43 <style>
     44 #sync-page {
     45   /* TODO(akalin): Figure out a better way to make the tab box the
     46      same height no matter which tab is selected. */
     47   min-height: 650px;
     48 }
     49 
     50 #traffic-dump {
     51  font-size: 120%;
     52 }
     53 </style>
     54 
     55 <tabbox id="sync-page">
     56   <tabs>
     57     <tab id="sync-about-tab">About</tab>
     58     <tab id="sync-data-tab">Data</tab>
     59     <tab id="sync-notifications-tab">Notifications</tab>
     60     <tab id="sync-events-tab">Events</tab>
     61     <tab id="sync-browser-tab">Sync Node Browser</tab>
     62     <tab id="sync-search-tab">Search</tab>
     63     <tab id="sync-traffic-tab">Traffic</tab>
     64   </tabs>
     65   <tabpanels>
     66     <tabpanel>
     67       <include src="about.html" />
     68     </tabpanel>
     69     <tabpanel>
     70       <include src="data.html" />
     71     </tabpanel>
     72     <tabpanel>
     73       <include src="notifications.html" />
     74     </tabpanel>
     75     <tabpanel>
     76       <include src="events.html" />
     77     </tabpanel>
     78     <tabpanel>
     79       <include src="node_browser.html" />
     80     </tabpanel>
     81     <tabpanel>
     82       <include src="search.html" />
     83     </tabpanel>
     84     <tabpanel>
     85       <include src="traffic.html" />
     86     </tabpanel>
     87   </tabpanels>
     88 </tabbox>
     89 
     90 <script src="chrome://resources/js/i18n_template.js"></script>
     91 <script src="chrome://resources/js/i18n_process.js"></script>
     92 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
     93 <script src="chrome://sync-internals/sync_index.js"></script>
     94 </body>
     95 </html>
     96