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

Side by Side Diff: components/sync/driver/resources/index.html

Issue 2872023002: [Sync] Add a simple UI to sync-internals to create UserEvents. (Closed)
Patch Set: Rebase Created 3 years, 7 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;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
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/text_defaults.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
9 <link rel="stylesheet" href="chrome://resources/css/list.css"> 9 <link rel="stylesheet" href="chrome://resources/css/list.css">
10 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 10 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
(...skipping 27 matching lines...) Expand all
38 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 38 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
39 <script src="chrome://resources/js/cr/ui/tree.js"></script> 39 <script src="chrome://resources/js/cr/ui/tree.js"></script>
40 <script src="chrome://resources/js/util.js"></script> 40 <script src="chrome://resources/js/util.js"></script>
41 <script src="chrome://sync-internals/chrome_sync.js"></script> 41 <script src="chrome://sync-internals/chrome_sync.js"></script>
42 <script src="chrome://sync-internals/about.js"></script> 42 <script src="chrome://sync-internals/about.js"></script>
43 <script src="chrome://sync-internals/events.js"></script> 43 <script src="chrome://sync-internals/events.js"></script>
44 <script src="chrome://sync-internals/types.js"></script> 44 <script src="chrome://sync-internals/types.js"></script>
45 <script src="chrome://sync-internals/sync_log.js"></script> 45 <script src="chrome://sync-internals/sync_log.js"></script>
46 <script src="chrome://sync-internals/sync_node_browser.js"></script> 46 <script src="chrome://sync-internals/sync_node_browser.js"></script>
47 <script src="chrome://sync-internals/sync_search.js"></script> 47 <script src="chrome://sync-internals/sync_search.js"></script>
48 <script src="chrome://sync-internals/user_events.js"></script>
48 <script src="chrome://sync-internals/strings.js"></script> 49 <script src="chrome://sync-internals/strings.js"></script>
49 </head> 50 </head>
50 <body> 51 <body>
51 52
52 <style> 53 <style>
53 #sync-page { 54 #sync-page {
54 /* TODO(akalin): Figure out a better way to make the tab box the 55 /* TODO(akalin): Figure out a better way to make the tab box the
55 same height no matter which tab is selected. */ 56 same height no matter which tab is selected. */
56 min-height: 650px; 57 min-height: 650px;
57 } 58 }
59 [hidden] {
60 /* This allows us to hide tabs by adding and removing hidden attribute. */
61 display: none !important;
62 }
58 </style> 63 </style>
59 64
60 <tabbox id="sync-page"> 65 <tabbox id="sync-page">
61 <tabs> 66 <tabs>
62 <tab id="sync-about-tab">About</tab> 67 <tab id="sync-about-tab">About</tab>
63 <tab id="sync-types-tab">Types</tab> 68 <tab id="sync-types-tab">Types</tab>
64 <tab id="sync-data-tab">Data</tab> 69 <tab id="sync-data-tab">Data</tab>
65 <tab id="sync-events-tab">Events</tab> 70 <tab id="sync-events-tab">Events</tab>
66 <tab id="sync-browser-tab">Sync Node Browser</tab> 71 <tab id="sync-browser-tab">Sync Node Browser</tab>
67 <tab id="sync-search-tab">Search</tab> 72 <tab id="sync-search-tab">Search</tab>
73 <tab id="sync-user-events-tab" hidden>User Events</tab>
68 </tabs> 74 </tabs>
69 <tabpanels> 75 <tabpanels>
70 <tabpanel> 76 <tabpanel>
71 <include src="about.html"> 77 <include src="about.html">
72 </tabpanel> 78 </tabpanel>
73 <tabpanel> 79 <tabpanel>
74 <include src="types.html"> 80 <include src="types.html">
75 </tabpanel> 81 </tabpanel>
76 <tabpanel> 82 <tabpanel>
77 <include src="data.html"> 83 <include src="data.html">
78 </tabpanel> 84 </tabpanel>
79 <tabpanel> 85 <tabpanel>
80 <include src="events.html"> 86 <include src="events.html">
81 </tabpanel> 87 </tabpanel>
82 <tabpanel> 88 <tabpanel>
83 <include src="node_browser.html"> 89 <include src="node_browser.html">
84 </tabpanel> 90 </tabpanel>
85 <tabpanel> 91 <tabpanel>
86 <include src="search.html"> 92 <include src="search.html">
87 </tabpanel> 93 </tabpanel>
94 <tabpanel>
95 <include src="user_events.html">
96 </tabpanel>
88 </tabpanels> 97 </tabpanels>
89 </tabbox> 98 </tabbox>
90 99
91 <script src="chrome://resources/js/i18n_template.js"></script> 100 <script src="chrome://resources/js/i18n_template.js"></script>
92 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 101 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
93 <script src="chrome://sync-internals/sync_index.js"></script> 102 <script src="chrome://sync-internals/sync_index.js"></script>
94 </body> 103 </body>
95 </html> 104 </html>
OLDNEW
« no previous file with comments | « components/sync/driver/resources/chrome_sync.js ('k') | components/sync/driver/resources/sync_index.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698