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

Side by Side Diff: chrome/browser/resources/sync_file_system_internals/main.html

Issue 304993004: [SyncFS] Add TaskLog tab on chrome://syncfs-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
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> 15 <script src="chrome://resources/js/i18n_template.js"></script>
16 16
17 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 17 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
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/utils.js"></script> 21 <script src="chrome://syncfs-internals/utils.js"></script>
22 22
23 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 23 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
24 24
25 <tabbox> 25 <tabbox>
26 <tabs> 26 <tabs>
27 <tab>Sync Service</tab> 27 <tab>Sync Service</tab>
28 <tab>Task Log</tab>
28 <tab>Extension Statuses</tab> 29 <tab>Extension Statuses</tab>
29 <tab>File Metadata</tab> 30 <tab>File Metadata</tab>
30 <tab>Database Dump</tab> 31 <tab>Database Dump</tab>
31 </tabs> 32 </tabs>
32 <tabpanels> 33 <tabpanels>
33 <tabpanel> 34 <tabpanel>
34 <include src="sync_service.html" /> 35 <include src="sync_service.html" />
35 </tabpanel> 36 </tabpanel>
36 <tabpanel> 37 <tabpanel>
38 <include src="task_log.html" />
39 </tabpanel>
40 <tabpanel>
37 <include src="extension_statuses.html" /> 41 <include src="extension_statuses.html" />
38 </tabpanel> 42 </tabpanel>
39 <tabpanel> 43 <tabpanel>
40 <include src="file_metadata.html" /> 44 <include src="file_metadata.html" />
41 </tabpanel> 45 </tabpanel>
42 <tabpanel> 46 <tabpanel>
43 <include src="dump_database.html" /> 47 <include src="dump_database.html" />
44 </tabpanel> 48 </tabpanel>
45 </tabpanels> 49 </tabpanels>
46 </tabbox> 50 </tabbox>
47 51
48 </body> 52 </body>
49 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698