| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html i18n-values="dir:textdirection;"> | 7 <html i18n-values="dir:textdirection;"> |
| 8 <meta charset="utf-8"> | 8 <meta charset="utf-8"> |
| 9 <title>Sync File System Internals</title> | 9 <title>Sync File System Internals</title> |
| 10 <link rel="stylesheet" href="main.css"> | 10 <link rel="stylesheet" href="main.css"> |
| 11 | 11 |
| 12 <script src="chrome://resources/js/util.js"></script> | 12 <script src="chrome://resources/js/util.js"></script> |
| 13 <script src="chrome://resources/js/cr.js"></script> | 13 <script src="chrome://resources/js/cr.js"></script> |
| 14 <script src="chrome://resources/js/cr/event_target.js"></script> | 14 <script src="chrome://resources/js/cr/event_target.js"></script> |
| 15 <script src="chrome://resources/js/i18n_template.js"></script> | |
| 16 | 15 |
| 17 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | 16 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
| 17 <script src="chrome://resources/js/load_time_data.js"></script> |
| 18 <script src="chrome://resources/js/cr/ui.js"></script> | 18 <script src="chrome://resources/js/cr/ui.js"></script> |
| 19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | 19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
| 20 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> | 20 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> |
| 21 <script src="chrome://syncfs-internals/strings.js"></script> |
| 21 <script src="chrome://syncfs-internals/utils.js"></script> | 22 <script src="chrome://syncfs-internals/utils.js"></script> |
| 22 | 23 |
| 23 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 24 | 25 |
| 25 <tabbox> | 26 <tabbox> |
| 26 <tabs> | 27 <tabs> |
| 27 <tab>Sync Service</tab> | 28 <tab>Sync Service</tab> |
| 28 <tab>Task Log</tab> | 29 <tab>Task Log</tab> |
| 29 <tab>Extension Statuses</tab> | 30 <tab>Extension Statuses</tab> |
| 30 <tab>File Metadata</tab> | 31 <tab>File Metadata</tab> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 42 </tabpanel> | 43 </tabpanel> |
| 43 <tabpanel> | 44 <tabpanel> |
| 44 <include src="file_metadata.html" > | 45 <include src="file_metadata.html" > |
| 45 </tabpanel> | 46 </tabpanel> |
| 46 <tabpanel> | 47 <tabpanel> |
| 47 <include src="dump_database.html" > | 48 <include src="dump_database.html" > |
| 48 </tabpanel> | 49 </tabpanel> |
| 49 </tabpanels> | 50 </tabpanels> |
| 50 </tabbox> | 51 </tabbox> |
| 51 | 52 |
| 53 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 52 </body> | 54 </body> |
| 53 </html> | 55 </html> |
| OLD | NEW |