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

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

Issue 2022003002: [MD History] Add search for synced devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@land_icons
Patch Set: rebase, clang-format, add annotation Created 4 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
4 <link rel="import" href="chrome://history/grouped_list.html"> 4 <link rel="import" href="chrome://history/grouped_list.html">
5 <link rel="import" href="chrome://history/history_list.html"> 5 <link rel="import" href="chrome://history/history_list.html">
6 <link rel="import" href="chrome://history/history_toolbar.html"> 6 <link rel="import" href="chrome://history/history_toolbar.html">
7 <link rel="import" href="chrome://history/synced_device_manager.html"> 7 <link rel="import" href="chrome://history/synced_device_manager.html">
8 <link rel="import" href="chrome://history/side_bar.html"> 8 <link rel="import" href="chrome://history/side_bar.html">
9 <link rel="import" href="chrome://history/shared_style.html"> 9 <link rel="import" href="chrome://history/shared_style.html">
10 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 10 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <template is="dom-if" if="[[grouped_]]"> 60 <template is="dom-if" if="[[grouped_]]">
61 <history-grouped-list id="history-grouped-list" 61 <history-grouped-list id="history-grouped-list"
62 range="[[queryState_.range]]" 62 range="[[queryState_.range]]"
63 query-start-time="[[queryState_.info.queryStartTime]]" 63 query-start-time="[[queryState_.info.queryStartTime]]"
64 query-end-time="[[queryState_.info.queryEndTime]]" 64 query-end-time="[[queryState_.info.queryEndTime]]"
65 searched-term="[[queryState_.info.term]]"> 65 searched-term="[[queryState_.info.term]]">
66 </history-grouped-list> 66 </history-grouped-list>
67 </template> 67 </template>
68 <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]"> 68 <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]">
69 <history-synced-device-manager id="history-synced-device-manager" 69 <history-synced-device-manager id="history-synced-device-manager"
70 session-list="[[queryState_.sessionList]]"> 70 session-list="[[queryState_.sessionList]]"
71 searched-term=[[queryState_.info.term]]>
71 </history-synced-device-manager> 72 </history-synced-device-manager>
72 </template> 73 </template>
73 </iron-pages> 74 </iron-pages>
74 </div> 75 </div>
75 </template> 76 </template>
76 <script src="chrome://history/app.js"></script> 77 <script src="chrome://history/app.js"></script>
77 </dom-module> 78 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/history_item.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698