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

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

Issue 9826035: [Sync] Display the client server traffic log in about:sync. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 8 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 <title>Sync Internals</title> 6 <title>Sync Internals</title>
7 <link rel="stylesheet" href="chrome://resources/css/list.css"> 7 <link rel="stylesheet" href="chrome://resources/css/list.css">
8 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 8 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
9 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 9 <link rel="stylesheet" href="chrome://resources/css/tree.css">
10 <link rel="stylesheet" href="sync_search.css"> 10 <link rel="stylesheet" href="sync_search.css">
(...skipping 25 matching lines...) Expand all
36 <script src="chrome://sync-internals/strings.js"></script> 36 <script src="chrome://sync-internals/strings.js"></script>
37 </head> 37 </head>
38 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 38 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
39 39
40 <style> 40 <style>
41 #sync-page { 41 #sync-page {
42 /* TODO(akalin): Figure out a better way to make the tab box the 42 /* TODO(akalin): Figure out a better way to make the tab box the
43 same height no matter which tab is selected. */ 43 same height no matter which tab is selected. */
44 min-height: 650px; 44 min-height: 650px;
45 } 45 }
46
47 pre {
Andrew T Wilson (Slow) 2012/03/30 21:18:56 I'm not sure we want to apply this style to all <p
lipalani1 2012/03/30 23:34:05 Done.
48 font-size: 120%;
49 }
46 </style> 50 </style>
47 51
48 <tabbox id="sync-page"> 52 <tabbox id="sync-page">
49 <tabs> 53 <tabs>
50 <tab>About</tab> 54 <tab>About</tab>
51 <tab>Data</tab> 55 <tab>Data</tab>
52 <tab>Notifications</tab> 56 <tab>Notifications</tab>
53 <tab>Events</tab> 57 <tab>Events</tab>
54 <tab>Sync Node Browser</tab> 58 <tab>Sync Node Browser</tab>
55 <tab>Search</tab> 59 <tab>Search</tab>
60 <tab>Traffic</tab>
56 </tabs> 61 </tabs>
57 <tabpanels> 62 <tabpanels>
58 <tabpanel> 63 <tabpanel>
59 <include src="about.html" /> 64 <include src="about.html" />
60 </tabpanel> 65 </tabpanel>
61 <tabpanel> 66 <tabpanel>
62 <include src="data.html" /> 67 <include src="data.html" />
63 </tabpanel> 68 </tabpanel>
64 <tabpanel> 69 <tabpanel>
65 <include src="notifications.html" /> 70 <include src="notifications.html" />
66 </tabpanel> 71 </tabpanel>
67 <tabpanel> 72 <tabpanel>
68 <include src="events.html" /> 73 <include src="events.html" />
69 </tabpanel> 74 </tabpanel>
70 <tabpanel> 75 <tabpanel>
71 <include src="node_browser.html" /> 76 <include src="node_browser.html" />
72 </tabpanel> 77 </tabpanel>
73 <tabpanel> 78 <tabpanel>
74 <include src="search.html" /> 79 <include src="search.html" />
75 </tabpanel> 80 </tabpanel>
81 <tabpanel>
82 <include src="traffic.html" />
83 </tabpanel>
76 </tabpanels> 84 </tabpanels>
77 </tabbox> 85 </tabbox>
78 86
79 <script src="chrome://resources/js/i18n_template.js"></script> 87 <script src="chrome://resources/js/i18n_template.js"></script>
80 <script src="chrome://resources/js/i18n_process.js"></script> 88 <script src="chrome://resources/js/i18n_process.js"></script>
81 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 89 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
82 <script src="chrome://sync-internals/sync_index.js"></script> 90 <script src="chrome://sync-internals/sync_index.js"></script>
83 </body> 91 </body>
84 </html> 92 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698