OLD | NEW |
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 Loading... |
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> |
OLD | NEW |