| 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 4cdb80566f5fd1301871c17703ab59a5f4d01dad..0ea3e04c74ea2d761bb2161f152f2992cd72b456 100644
|
| --- a/chrome/browser/resources/md_history/history.html
|
| +++ b/chrome/browser/resources/md_history/history.html
|
| @@ -20,6 +20,7 @@
|
| flex-direction: column;
|
| font-family: Roboto;
|
| font-size: 13px;
|
| + min-width: 800px;
|
| }
|
|
|
| #toolbar {
|
| @@ -30,12 +31,27 @@
|
| flex: 1 0 0;
|
| overflow: auto;
|
| }
|
| +
|
| + #history-synced-device-manager {
|
| + flex: 1 0 0;
|
| + }
|
| +
|
| + #main-container {
|
| + display: flex;
|
| + flex: 1 0 0;
|
| + overflow: hidden;
|
| + }
|
| </style>
|
| </head>
|
|
|
| <body>
|
| <history-toolbar class="paper-header" id="toolbar"></history-toolbar>
|
| - <history-list id="history-list"></history-list>
|
| + <div id="main-container">
|
| + <history-side-bar id="history-side-bar"></history-side-bar>
|
| + <history-list id="history-list"></history-list>
|
| + <history-synced-device-manager id="history-synced-device-manager" hidden>
|
| + </history-synced-device-manager>
|
| + </div>
|
|
|
| <link rel="import" href="chrome://resources/html/polymer_config.html">
|
| <link rel="import" href="chrome://resources/html/cr.html">
|
| @@ -45,6 +61,8 @@
|
|
|
| <link rel="import" href="chrome://history/history_list.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>
|
|
|
|
|