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

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

Issue 217633003: sync: Remove TrafficRecorder (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 8 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 <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">
(...skipping 28 matching lines...) Expand all
39 <script src="chrome://sync-internals/strings.js"></script> 39 <script src="chrome://sync-internals/strings.js"></script>
40 </head> 40 </head>
41 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 41 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
42 42
43 <style> 43 <style>
44 #sync-page { 44 #sync-page {
45 /* TODO(akalin): Figure out a better way to make the tab box the 45 /* TODO(akalin): Figure out a better way to make the tab box the
46 same height no matter which tab is selected. */ 46 same height no matter which tab is selected. */
47 min-height: 650px; 47 min-height: 650px;
48 } 48 }
49
50 #traffic-dump {
51 font-size: 120%;
52 }
53 </style> 49 </style>
54 50
55 <tabbox id="sync-page"> 51 <tabbox id="sync-page">
56 <tabs> 52 <tabs>
57 <tab id="sync-about-tab">About</tab> 53 <tab id="sync-about-tab">About</tab>
58 <tab id="sync-data-tab">Data</tab> 54 <tab id="sync-data-tab">Data</tab>
59 <tab id="sync-events-tab">Events</tab> 55 <tab id="sync-events-tab">Events</tab>
60 <tab id="sync-browser-tab">Sync Node Browser</tab> 56 <tab id="sync-browser-tab">Sync Node Browser</tab>
61 <tab id="sync-search-tab">Search</tab> 57 <tab id="sync-search-tab">Search</tab>
62 <tab id="sync-traffic-tab">Traffic</tab>
63 </tabs> 58 </tabs>
64 <tabpanels> 59 <tabpanels>
65 <tabpanel> 60 <tabpanel>
66 <include src="about.html" /> 61 <include src="about.html" />
67 </tabpanel> 62 </tabpanel>
68 <tabpanel> 63 <tabpanel>
69 <include src="data.html" /> 64 <include src="data.html" />
70 </tabpanel> 65 </tabpanel>
71 <tabpanel> 66 <tabpanel>
72 <include src="events.html" /> 67 <include src="events.html" />
73 </tabpanel> 68 </tabpanel>
74 <tabpanel> 69 <tabpanel>
75 <include src="node_browser.html" /> 70 <include src="node_browser.html" />
76 </tabpanel> 71 </tabpanel>
77 <tabpanel> 72 <tabpanel>
78 <include src="search.html" /> 73 <include src="search.html" />
79 </tabpanel> 74 </tabpanel>
80 <tabpanel>
81 <include src="traffic.html" />
82 </tabpanel>
83 </tabpanels> 75 </tabpanels>
84 </tabbox> 76 </tabbox>
85 77
86 <script src="chrome://resources/js/i18n_template.js"></script> 78 <script src="chrome://resources/js/i18n_template.js"></script>
87 <script src="chrome://resources/js/i18n_process.js"></script> 79 <script src="chrome://resources/js/i18n_process.js"></script>
88 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 80 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
89 <script src="chrome://sync-internals/sync_index.js"></script> 81 <script src="chrome://sync-internals/sync_index.js"></script>
90 </body> 82 </body>
91 </html> 83 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/sync_internals/chrome_sync.js ('k') | chrome/browser/resources/sync_internals/traffic.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698