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

Side by Side Diff: chrome/browser/resources/sync_internals/sync_index.html

Issue 290023003: sync: Add UI code for per type debug counters (Closed) Base URL: https://chromium.googlesource.com/chromium/src
Patch Set: Update comment and rebase 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <!-- If you change the title, make sure you also update 4 <!-- If you change the title, make sure you also update
5 chrome/test/functional/special_tabs.py. --> 5 chrome/test/functional/special_tabs.py. -->
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <title>Sync Internals</title> 7 <title>Sync Internals</title>
8 <link rel="stylesheet" href="chrome://resources/css/list.css"> 8 <link rel="stylesheet" href="chrome://resources/css/list.css">
9 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 9 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
10 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 10 <link rel="stylesheet" href="chrome://resources/css/tree.css">
11 <link rel="stylesheet" href="about.css"> 11 <link rel="stylesheet" href="about.css">
12 <link rel="stylesheet" href="types.css">
12 <link rel="stylesheet" href="sync_search.css"> 13 <link rel="stylesheet" href="sync_search.css">
13 <link rel="stylesheet" href="sync_node_browser.css"> 14 <link rel="stylesheet" href="sync_node_browser.css">
14 15
15 <script src="chrome://resources/css/tree.css.js"></script> 16 <script src="chrome://resources/css/tree.css.js"></script>
16 17
17 <script src="chrome://resources/js/event_tracker.js"></script> 18 <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.js"></script>
19 <script src="chrome://resources/js/cr/event_target.js"></script> 20 <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/touch_handler.js"></script>
21 <script src="chrome://resources/js/cr/ui.js"></script> 22 <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/focus_outline_manager.js"></script>
23 <script src="chrome://resources/js/cr/ui/splitter.js"></script> 24 <script src="chrome://resources/js/cr/ui/splitter.js"></script>
24 <script src="chrome://resources/js/load_time_data.js"></script> 25 <script src="chrome://resources/js/load_time_data.js"></script>
25 26
26 <!-- List stuff. --> 27 <!-- List stuff. -->
27 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> 28 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
28 <script src="chrome://resources/js/cr/ui/list_item.js"></script> 29 <script src="chrome://resources/js/cr/ui/list_item.js"></script>
29 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script> 30 <script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
30 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> 31 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
31 <script src="chrome://resources/js/cr/ui/list.js"></script> 32 <script src="chrome://resources/js/cr/ui/list.js"></script>
32 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 33 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
33 <script src="chrome://resources/js/cr/ui/tree.js"></script> 34 <script src="chrome://resources/js/cr/ui/tree.js"></script>
34 <script src="chrome://resources/js/util.js"></script> 35 <script src="chrome://resources/js/util.js"></script>
35 <script src="chrome://sync-internals/chrome_sync.js"></script> 36 <script src="chrome://sync-internals/chrome_sync.js"></script>
36 <script src="chrome://sync-internals/about.js"></script> 37 <script src="chrome://sync-internals/about.js"></script>
38 <script src="chrome://sync-internals/types.js"></script>
37 <script src="chrome://sync-internals/sync_log.js"></script> 39 <script src="chrome://sync-internals/sync_log.js"></script>
38 <script src="chrome://sync-internals/sync_node_browser.js"></script> 40 <script src="chrome://sync-internals/sync_node_browser.js"></script>
39 <script src="chrome://sync-internals/sync_search.js"></script> 41 <script src="chrome://sync-internals/sync_search.js"></script>
40 <script src="chrome://sync-internals/strings.js"></script> 42 <script src="chrome://sync-internals/strings.js"></script>
41 </head> 43 </head>
42 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 44 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
43 45
44 <style> 46 <style>
45 #sync-page { 47 #sync-page {
46 /* TODO(akalin): Figure out a better way to make the tab box the 48 /* TODO(akalin): Figure out a better way to make the tab box the
47 same height no matter which tab is selected. */ 49 same height no matter which tab is selected. */
48 min-height: 650px; 50 min-height: 650px;
49 } 51 }
50 </style> 52 </style>
51 53
52 <tabbox id="sync-page"> 54 <tabbox id="sync-page">
53 <tabs> 55 <tabs>
54 <tab id="sync-about-tab">About</tab> 56 <tab id="sync-about-tab">About</tab>
57 <tab id="sync-types-tab">Types</tab>
55 <tab id="sync-data-tab">Data</tab> 58 <tab id="sync-data-tab">Data</tab>
56 <tab id="sync-events-tab">Events</tab> 59 <tab id="sync-events-tab">Events</tab>
57 <tab id="sync-browser-tab">Sync Node Browser</tab> 60 <tab id="sync-browser-tab">Sync Node Browser</tab>
58 <tab id="sync-search-tab">Search</tab> 61 <tab id="sync-search-tab">Search</tab>
59 </tabs> 62 </tabs>
60 <tabpanels> 63 <tabpanels>
61 <tabpanel> 64 <tabpanel>
62 <include src="about.html" /> 65 <include src="about.html" />
63 </tabpanel> 66 </tabpanel>
64 <tabpanel> 67 <tabpanel>
68 <include src="types.html" />
69 </tabpanel>
70 <tabpanel>
65 <include src="data.html" /> 71 <include src="data.html" />
66 </tabpanel> 72 </tabpanel>
67 <tabpanel> 73 <tabpanel>
68 <include src="events.html" /> 74 <include src="events.html" />
69 </tabpanel> 75 </tabpanel>
70 <tabpanel> 76 <tabpanel>
71 <include src="node_browser.html" /> 77 <include src="node_browser.html" />
72 </tabpanel> 78 </tabpanel>
73 <tabpanel> 79 <tabpanel>
74 <include src="search.html" /> 80 <include src="search.html" />
75 </tabpanel> 81 </tabpanel>
76 </tabpanels> 82 </tabpanels>
77 </tabbox> 83 </tabbox>
78 84
79 <script src="chrome://resources/js/i18n_template2.js"></script> 85 <script src="chrome://resources/js/i18n_template2.js"></script>
80 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 86 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
81 <script src="chrome://sync-internals/sync_index.js"></script> 87 <script src="chrome://sync-internals/sync_index.js"></script>
82 </body> 88 </body>
83 </html> 89 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_internals/chrome_sync.js ('k') | chrome/browser/resources/sync_internals/types.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698