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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/driver/resources/index.html
diff --git a/components/sync/driver/resources/index.html b/components/sync/driver/resources/index.html
index f912f2c52c249e76c53cfc7762178445f15d4894..93d6b42055e16a2fafb1d22d1fbdb8e6806c455f 100644
--- a/components/sync/driver/resources/index.html
+++ b/components/sync/driver/resources/index.html
@@ -45,6 +45,7 @@ chrome/test/functional/special_tabs.py. -->
<script src="chrome://sync-internals/sync_log.js"></script>
<script src="chrome://sync-internals/sync_node_browser.js"></script>
<script src="chrome://sync-internals/sync_search.js"></script>
+<script src="chrome://sync-internals/user_events.js"></script>
<script src="chrome://sync-internals/strings.js"></script>
</head>
<body>
@@ -55,6 +56,10 @@ chrome/test/functional/special_tabs.py. -->
same height no matter which tab is selected. */
min-height: 650px;
}
+[hidden] {
+ /* This allows us to hide tabs by adding and removing hidden attribute. */
+ display: none !important;
+}
</style>
<tabbox id="sync-page">
@@ -65,6 +70,7 @@ chrome/test/functional/special_tabs.py. -->
<tab id="sync-events-tab">Events</tab>
<tab id="sync-browser-tab">Sync Node Browser</tab>
<tab id="sync-search-tab">Search</tab>
+ <tab id="sync-user-events-tab" hidden>User Events</tab>
</tabs>
<tabpanels>
<tabpanel>
@@ -85,6 +91,9 @@ chrome/test/functional/special_tabs.py. -->
<tabpanel>
<include src="search.html">
</tabpanel>
+ <tabpanel>
+ <include src="user_events.html">
+ </tabpanel>
</tabpanels>
</tabbox>
« 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