| Index: chrome/browser/resources/md_history/history.html
|
| diff --git a/chrome/browser/resources/md_history/history.html b/chrome/browser/resources/md_history/history.html
|
| index 29b8ba364581bcb4be422b9fb9a795b4995e89db..4b9b3169ec0610abefa5d89336ed66783ce0c7a2 100644
|
| --- a/chrome/browser/resources/md_history/history.html
|
| +++ b/chrome/browser/resources/md_history/history.html
|
| @@ -30,18 +30,35 @@
|
| flex: 1 0 0;
|
| overflow: auto;
|
| }
|
| +
|
| + #synced-device-manager {
|
| + flex: 1 0 0;
|
| + padding-top: 40px;
|
| + }
|
| +
|
| + #history-panel {
|
| + display: flex;
|
| + overflow: hidden;
|
| + }
|
| </style>
|
| </head>
|
|
|
| <body>
|
| <history-toolbar class="paper-header" id="toolbar"></history-toolbar>
|
| - <history-card-manager id="history-card-manager"></history-card-manager>
|
| + <div id="history-panel">
|
| + <side-bar id="side-bar"></side-bar>
|
| + <history-card-manager id="history-card-manager"></history-card-manager>
|
| + <synced-device-manager id="synced-device-manager" hidden>
|
| + </synced-device-manager>
|
| + </div>
|
|
|
| <link rel="import" href="chrome://resources/html/polymer_config.html">
|
| <link rel="import" href="chrome://resources/html/cr.html">
|
| <link rel="import" href="chrome://resources/html/util.html">
|
| <link rel="import" href="chrome://history/history_card_manager.html">
|
| <link rel="import" href="chrome://history/history_toolbar.html">
|
| + <link rel="import" href="chrome://history/synced_device_manager.html">
|
| + <link rel="import" href="chrome://history/side_bar.html">
|
|
|
| <script src="history.js"></script>
|
|
|
|
|