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

Side by Side Diff: chrome/browser/resources/md_history/history.html

Issue 1607403004: MD History: Display synced tabs history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@second_patch
Patch Set: Changed switching between pages & addressed comments Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf8"> 4 <meta charset="utf8">
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/roboto.css"> 7 <link rel="stylesheet" href="chrome://resources/css/roboto.css">
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
9 9
10 <style> 10 <style>
(...skipping 12 matching lines...) Expand all
23 } 23 }
24 24
25 #toolbar { 25 #toolbar {
26 flex: 0 0 56px; 26 flex: 0 0 56px;
27 } 27 }
28 28
29 #history-card-manager { 29 #history-card-manager {
30 flex: 1 0 0; 30 flex: 1 0 0;
31 overflow: auto; 31 overflow: auto;
32 } 32 }
33
34 #synced-device-manager {
35 flex: 1 0 0;
36 padding-top: 40px;
37 }
38
39 #history-panel {
40 display: flex;
41 overflow: hidden;
42 }
33 </style> 43 </style>
34 </head> 44 </head>
35 45
36 <body> 46 <body>
37 <history-toolbar class="paper-header" id="toolbar"></history-toolbar> 47 <history-toolbar class="paper-header" id="toolbar"></history-toolbar>
38 <history-card-manager id="history-card-manager"></history-card-manager> 48 <div id="history-panel">
49 <side-bar id="side-bar"></side-bar>
50 <history-card-manager id="history-card-manager"></history-card-manager>
51 <synced-device-manager id="synced-device-manager" hidden>
52 </synced-device-manager>
53 </div>
39 54
40 <link rel="import" href="chrome://resources/html/polymer_config.html"> 55 <link rel="import" href="chrome://resources/html/polymer_config.html">
41 <link rel="import" href="chrome://resources/html/cr.html"> 56 <link rel="import" href="chrome://resources/html/cr.html">
42 <link rel="import" href="chrome://resources/html/util.html"> 57 <link rel="import" href="chrome://resources/html/util.html">
43 <link rel="import" href="chrome://history/history_card_manager.html"> 58 <link rel="import" href="chrome://history/history_card_manager.html">
44 <link rel="import" href="chrome://history/history_toolbar.html"> 59 <link rel="import" href="chrome://history/history_toolbar.html">
60 <link rel="import" href="chrome://history/synced_device_manager.html">
61 <link rel="import" href="chrome://history/side_bar.html">
45 62
46 <script src="history.js"></script> 63 <script src="history.js"></script>
47 64
48 <!-- Prepare strings and perform i18n substitutions. --> 65 <!-- Prepare strings and perform i18n substitutions. -->
49 <link rel="import" href="chrome://resources/html/load_time_data.html"> 66 <link rel="import" href="chrome://resources/html/load_time_data.html">
50 <script src="strings.js"></script> 67 <script src="strings.js"></script>
51 <link rel="import" href="chrome://resources/html/i18n_template.html"> 68 <link rel="import" href="chrome://resources/html/i18n_template.html">
52 </body> 69 </body>
53 70
54 </html> 71 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698