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

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

Issue 23753007: Show file path rather than title in syncfs-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 <title>Sync File System Internals</title> 8 <title>Sync File System Internals</title>
9 <link rel="stylesheet" href="main.css"> 9 <link rel="stylesheet" href="main.css">
10 10
11 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr.js"></script> 12 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/cr/event_target.js"></script> 13 <script src="chrome://resources/js/cr/event_target.js"></script>
14 <script src="chrome://resources/js/i18n_template.js"></script> 14 <script src="chrome://resources/js/i18n_template.js"></script>
15 15
16 <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/cr/ui.js"></script> 17 <script src="chrome://resources/js/cr/ui.js"></script>
18 <script src="chrome://resources/js/cr/ui/tabs.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> 19 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
20 <script src="chrome://syncfs-internals/utils.js"></script>
tzik 2013/09/10 07:50:31 If you put this by relative path, the script will
tzik 2013/09/10 08:22:33 Hmm. It seems not working. Sorry for confusion.
20 21
21 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 22 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
22 23
23 <tabbox> 24 <tabbox>
24 <tabs> 25 <tabs>
25 <tab>Sync Service</tab> 26 <tab>Sync Service</tab>
26 <tab>Extension Statuses</tab> 27 <tab>Extension Statuses</tab>
27 <tab>File Metadata</tab> 28 <tab>File Metadata</tab>
28 </tabs> 29 </tabs>
29 <tabpanels> 30 <tabpanels>
30 <tabpanel> 31 <tabpanel>
31 <include src="sync_service.html" /> 32 <include src="sync_service.html" />
32 </tabpanel> 33 </tabpanel>
33 <tabpanel> 34 <tabpanel>
34 <include src="extension_statuses.html" /> 35 <include src="extension_statuses.html" />
35 </tabpanel> 36 </tabpanel>
36 <tabpanel> 37 <tabpanel>
37 <include src="file_metadata.html" /> 38 <include src="file_metadata.html" />
38 </tabpanel> 39 </tabpanel>
39 </tabpanels> 40 </tabpanels>
40 </tabbox> 41 </tabbox>
41 42
42 </body> 43 </body>
43 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698