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

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

Issue 14765003: Gets the initial sync service status. In the next patch I'll make the syncfs-internals dashboard a … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tzik review #1 Created 7 years, 7 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 20
21 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 21 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
22 22
arv (Not doing code reviews) 2013/05/02 19:45:06 Does this really need an id? Can you just use "tab
calvinlo 2013/05/07 06:14:10 Done.
23 <tabbox> 23 <tabbox id="syncfs-internals-tabbox">
24 <tabs> 24 <tabs>
25 <tab>Sync Service</tab> 25 <tab>Sync Service</tab>
26 </tabs> 26 </tabs>
27 <tabpanels> 27 <tabpanels>
28
29 <tabpanel> 28 <tabpanel>
30 <!-- Sync Service --> 29 <include src="sync_service.html" />
31 <h2>Sync Service</h2>
32 </tabpanel> 30 </tabpanel>
33
34 </tabpanels> 31 </tabpanels>
35 </tabbox> 32 </tabbox>
36 33
37 </body> 34 </body>
38 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698