| 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>
|
|
|
|
|