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_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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 </style> 46 </style>
47 47
48 <tabbox id="sync-page"> 48 <tabbox id="sync-page">
49 <tabs> 49 <tabs>
50 <tab>About</tab> 50 <tab>About</tab>
51 <tab>Data</tab> 51 <tab>Data</tab>
52 <tab>Notifications</tab> 52 <tab>Notifications</tab>
53 <tab>Events</tab> 53 <tab>Events</tab>
54 <tab>Sync Node Browser</tab> 54 <tab>Sync Node Browser</tab>
55 <tab>Search</tab> 55 <tab>Search</tab>
56 <tab>Traffic</tab>
56 </tabs> 57 </tabs>
57 <tabpanels> 58 <tabpanels>
58 <tabpanel> 59 <tabpanel>
59 <include src="about.html" /> 60 <include src="about.html" />
60 </tabpanel> 61 </tabpanel>
61 <tabpanel> 62 <tabpanel>
62 <include src="data.html" /> 63 <include src="data.html" />
63 </tabpanel> 64 </tabpanel>
64 <tabpanel> 65 <tabpanel>
65 <include src="notifications.html" /> 66 <include src="notifications.html" />
66 </tabpanel> 67 </tabpanel>
67 <tabpanel> 68 <tabpanel>
68 <include src="events.html" /> 69 <include src="events.html" />
69 </tabpanel> 70 </tabpanel>
70 <tabpanel> 71 <tabpanel>
71 <include src="node_browser.html" /> 72 <include src="node_browser.html" />
72 </tabpanel> 73 </tabpanel>
73 <tabpanel> 74 <tabpanel>
74 <include src="search.html" /> 75 <include src="search.html" />
75 </tabpanel> 76 </tabpanel>
77 <tabpanel>
78 <include src="traffic.html" />
79 </tabpanel>
76 </tabpanels> 80 </tabpanels>
77 </tabbox> 81 </tabbox>
78 82
79 <script src="chrome://resources/js/i18n_template.js"></script> 83 <script src="chrome://resources/js/i18n_template.js"></script>
80 <script src="chrome://resources/js/i18n_process.js"></script> 84 <script src="chrome://resources/js/i18n_process.js"></script>
81 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 85 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
82 <script src="chrome://sync-internals/sync_index.js"></script> 86 <script src="chrome://sync-internals/sync_index.js"></script>
83 </body> 87 </body>
84 </html> 88 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698