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

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

Issue 2255033002: [MD History] Copy stats from the old history page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sidebar_stats
Patch Set: add_stats Created 4 years, 4 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
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/cr_elements/cr_dialog/cr_dialog.html "> 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
3 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_shared_menu/cr_shared _menu.html">
4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> 4 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
7 <link rel="import" href="chrome://history/browser_service.html">
7 <link rel="import" href="chrome://history/grouped_list.html"> 8 <link rel="import" href="chrome://history/grouped_list.html">
8 <link rel="import" href="chrome://history/history_list.html"> 9 <link rel="import" href="chrome://history/history_list.html">
9 <link rel="import" href="chrome://history/lazy_render.html"> 10 <link rel="import" href="chrome://history/lazy_render.html">
10 <link rel="import" href="chrome://history/shared_style.html"> 11 <link rel="import" href="chrome://history/shared_style.html">
11 12
12 <dom-module id="history-list-container"> 13 <dom-module id="history-list-container">
13 <template> 14 <template>
14 <style include="shared-style cr-shared-style"> 15 <style include="shared-style cr-shared-style">
15 :host { 16 :host {
16 display: block; 17 display: block;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 </paper-item> 66 </paper-item>
66 <paper-item id="menuRemoveButton" class="menu-item" 67 <paper-item id="menuRemoveButton" class="menu-item"
67 on-tap="onRemoveFromHistoryTap_"> 68 on-tap="onRemoveFromHistoryTap_">
68 $i18n{removeFromHistory} 69 $i18n{removeFromHistory}
69 </paper-item> 70 </paper-item>
70 </cr-shared-menu> 71 </cr-shared-menu>
71 </template> 72 </template>
72 </template> 73 </template>
73 <script src="chrome://history/list_container.js"></script> 74 <script src="chrome://history/list_container.js"></script>
74 </dom-module> 75 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698