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

Unified Diff: chrome/browser/resources/md_history/history.html

Issue 1729263005: MD History: Display synced tabs history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdh_shared_styles
Patch Set: address_comments Created 4 years, 9 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
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 44af7beed9f35bde455f492cf9dba4f09c05e2d9..fe45a411ca0cec071afd20e18c55c1b5d67d47df 100644
--- a/chrome/browser/resources/md_history/history.html
+++ b/chrome/browser/resources/md_history/history.html
@@ -17,6 +17,7 @@
background: #f2f2f2;
display: flex;
flex-direction: column;
+ min-width: 800px;
}
#toolbar {
@@ -27,12 +28,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">
@@ -43,6 +59,8 @@
<link rel="import" href="chrome://history/constants.html">
<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>
« no previous file with comments | « chrome/browser/resources/md_history/compiled_resources2.gyp ('k') | chrome/browser/resources/md_history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698