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 | 10 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 <template is="dom-if" if="[[grouped_]]"> | 59 <template is="dom-if" if="[[grouped_]]"> |
60 <history-grouped-list id="history-grouped-list" | 60 <history-grouped-list id="history-grouped-list" |
61 range="[[queryState_.range]]" | 61 range="[[queryState_.range]]" |
62 query-start-time="[[queryState_.info.queryStartTime]]" | 62 query-start-time="[[queryState_.info.queryStartTime]]" |
63 query-end-time="[[queryState_.info.queryEndTime]]" | 63 query-end-time="[[queryState_.info.queryEndTime]]" |
64 searched-term="[[queryState_.info.term]]"> | 64 searched-term="[[queryState_.info.term]]"> |
65 </history-grouped-list> | 65 </history-grouped-list> |
66 </template> | 66 </template> |
67 <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]"> | 67 <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]"> |
68 <history-synced-device-manager id="history-synced-device-manager" | 68 <history-synced-device-manager id="history-synced-device-manager" |
69 session-list="[[queryState_.sessionList]]"> | 69 session-list="[[queryState_.sessionList]]" |
| 70 searched-term=[[queryState_.info.term]]> |
70 </history-synced-device-manager> | 71 </history-synced-device-manager> |
71 </template> | 72 </template> |
72 </iron-pages> | 73 </iron-pages> |
73 </div> | 74 </div> |
74 </template> | 75 </template> |
75 <script src="chrome://history/app.js"></script> | 76 <script src="chrome://history/app.js"></script> |
76 </dom-module> | 77 </dom-module> |
OLD | NEW |