| 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/app-layout/app-drawer/a
pp-drawer.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a
pp-drawer.html"> |
| 3 <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-flex-layout/iron-f
lex-layout.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html
"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography
.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography
.html"> |
| 7 <link rel="import" href="chrome://history/browser_service.html"> | 7 <link rel="import" href="chrome://history/browser_service.html"> |
| 8 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://history/shared_style.html"> |
| 9 | 9 |
| 10 <dom-module id="history-side-bar"> | 10 <dom-module id="history-side-bar"> |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 <app-drawer id="drawer" tabindex="0" on-focus="onDrawerFocus_" swipe-open | 112 <app-drawer id="drawer" tabindex="0" on-focus="onDrawerFocus_" swipe-open |
| 113 align="start"> | 113 align="start"> |
| 114 <div id="drawer-header"> | 114 <div id="drawer-header"> |
| 115 <h1>$i18n{title}</h1> | 115 <h1>$i18n{title}</h1> |
| 116 </div> | 116 </div> |
| 117 <iron-selector id="menu" selected="{{selectedPage}}" | 117 <iron-selector id="menu" selected="{{selectedPage}}" |
| 118 selectable=".page-item" attr-for-selected="path" | 118 selectable=".page-item" attr-for-selected="path" |
| 119 fallback-selection="history" | 119 fallback-selection="history" |
| 120 on-iron-activate="onSelectorActivate_"> | 120 on-iron-activate="onSelectorActivate_"> |
| 121 <a href="/" class="page-item" path="history"> | 121 <a href="/[[getQueryString_(route)]]" class="page-item" path="history"> |
| 122 $i18n{historyMenuItem} | 122 $i18n{historyMenuItem} |
| 123 </a> | 123 </a> |
| 124 <a href="/syncedTabs" class="page-item" path="syncedTabs"> | 124 <a href="/syncedTabs[[getQueryString_(route)]]" class="page-item" |
| 125 path="syncedTabs"> |
| 125 $i18n{openTabsMenuItem} | 126 $i18n{openTabsMenuItem} |
| 126 </a> | 127 </a> |
| 127 <div class="separator"></div> | 128 <div class="separator"></div> |
| 128 <a href="chrome://settings/clearBrowserData" | 129 <a href="chrome://settings/clearBrowserData" |
| 129 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> | 130 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> |
| 130 $i18n{clearBrowsingData} | 131 $i18n{clearBrowsingData} |
| 131 </a> | 132 </a> |
| 132 <div id="footer" hidden="[[!showFooter]]"> | 133 <div id="footer" hidden="[[!showFooter]]"> |
| 133 <div class="separator"></div> | 134 <div class="separator"></div> |
| 134 <div id="footer-text">$i18nRaw{sidebarFooter}</div> | 135 <div id="footer-text">$i18nRaw{sidebarFooter}</div> |
| 135 </div> | 136 </div> |
| 136 </iron-selector> | 137 </iron-selector> |
| 137 </app-drawer> | 138 </app-drawer> |
| 138 </template> | 139 </template> |
| 139 <script src="chrome://history/side_bar.js"></script> | 140 <script src="chrome://history/side_bar.js"></script> |
| 140 </dom-module> | 141 </dom-module> |
| OLD | NEW |