| 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-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele
ctor.html"> | 3 <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/paper-ripple/paper-ripp
le.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp
le.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://chrome/history/browser_service.html"> |
| 8 <link rel="import" href="chrome://history/shared_style.html"> | 8 <link rel="import" href="chrome://chrome/history/shared_style.html"> |
| 9 | 9 |
| 10 <dom-module id="history-side-bar"> | 10 <dom-module id="history-side-bar"> |
| 11 <template> | 11 <template> |
| 12 <style include="shared-style"> | 12 <style include="shared-style"> |
| 13 :host { | 13 :host { |
| 14 display: block; | 14 display: block; |
| 15 height: 100%; | 15 height: 100%; |
| 16 padding-top: 5px; | 16 padding-top: 5px; |
| 17 width: var(--side-bar-width); | 17 width: var(--side-bar-width); |
| 18 } | 18 } |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 #footer a { | 76 #footer a { |
| 77 color: var(--google-blue-700); | 77 color: var(--google-blue-700); |
| 78 text-decoration: none; | 78 text-decoration: none; |
| 79 } | 79 } |
| 80 </style> | 80 </style> |
| 81 | 81 |
| 82 <iron-selector id="menu" selected="[[selectedPage]]" | 82 <iron-selector id="menu" selected="[[selectedPage]]" |
| 83 selectable=".page-item" attr-for-selected="path" | 83 selectable=".page-item" attr-for-selected="path" |
| 84 fallback-selection="history" | 84 fallback-selection="history" |
| 85 on-iron-activate="onSelectorActivate_"> | 85 on-iron-activate="onSelectorActivate_"> |
| 86 <a href="/[[getQueryString_(route)]]" class="page-item" path="history"> | 86 <a href="/history/[[getQueryString_(route)]]" class="page-item" path="hist
ory"> |
| 87 $i18n{historyMenuItem} | 87 $i18n{historyMenuItem} |
| 88 <paper-ripple></paper-ripple> | 88 <paper-ripple></paper-ripple> |
| 89 </a> | 89 </a> |
| 90 <a href="/syncedTabs[[getQueryString_(route)]]" class="page-item" | 90 <a href="/history/syncedTabs[[getQueryString_(route)]]" class="page-item" |
| 91 path="syncedTabs"> | 91 path="syncedTabs"> |
| 92 $i18n{openTabsMenuItem} | 92 $i18n{openTabsMenuItem} |
| 93 <paper-ripple></paper-ripple> | 93 <paper-ripple></paper-ripple> |
| 94 </a> | 94 </a> |
| 95 <div class="separator"></div> | 95 <div class="separator"></div> |
| 96 <a href="chrome://settings/clearBrowserData" | 96 <a href="chrome://settings/clearBrowserData" |
| 97 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> | 97 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> |
| 98 $i18n{clearBrowsingData} | 98 $i18n{clearBrowsingData} |
| 99 <paper-ripple></paper-ripple> | 99 <paper-ripple></paper-ripple> |
| 100 </a> | 100 </a> |
| 101 <div id="footer" hidden="[[!showFooter]]"> | 101 <div id="footer" hidden="[[!showFooter]]"> |
| 102 <div class="separator"></div> | 102 <div class="separator"></div> |
| 103 <div id="footer-text">$i18nRaw{sidebarFooter}</div> | 103 <div id="footer-text">$i18nRaw{sidebarFooter}</div> |
| 104 </div> | 104 </div> |
| 105 </iron-selector> | 105 </iron-selector> |
| 106 </template> | 106 </template> |
| 107 <script src="chrome://history/side_bar.js"></script> | 107 <script src="chrome://chrome/history/side_bar.js"></script> |
| 108 </dom-module> | 108 </dom-module> |
| OLD | NEW |