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

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

Powered by Google App Engine
This is Rietveld 408576698