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

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

Issue 2238163002: [MD History] Add UMA stats for switching views and the CBD button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@start_focus_in_search_bar
Patch Set: fix_test 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/grouped_list.html"> 7 <link rel="import" href="chrome://history/grouped_list.html">
8 <link rel="import" href="chrome://history/history_list.html"> 8 <link rel="import" href="chrome://history/history_list.html">
9 <link rel="import" href="chrome://history/lazy_render.html"> 9 <link rel="import" href="chrome://history/lazy_render.html">
10 <link rel="import" href="chrome://history/shared_style.html"> 10 <link rel="import" href="chrome://history/shared_style.html">
(...skipping 15 matching lines...) Expand all
26 dialog .body { 26 dialog .body {
27 white-space: pre-wrap; 27 white-space: pre-wrap;
28 } 28 }
29 </style> 29 </style>
30 <iron-pages id="content" attr-for-selected="id" 30 <iron-pages id="content" attr-for-selected="id"
31 selected="[[selectedPage_]]"> 31 selected="[[selectedPage_]]">
32 <history-list id="infinite-list" querying="[[queryState.querying]]" 32 <history-list id="infinite-list" querying="[[queryState.querying]]"
33 searched-term="[[queryResult.info.term]]"></history-list> 33 searched-term="[[queryResult.info.term]]"></history-list>
34 <template is="dom-if" if="[[grouped]]"> 34 <template is="dom-if" if="[[grouped]]">
35 <history-grouped-list id="grouped-list" 35 <history-grouped-list id="grouped-list"
36 range="[[queryState.range]]" 36 range="[[groupedRange]]"
37 query-start-time="[[queryResult.info.queryStartTime]]" 37 query-start-time="[[queryResult.info.queryStartTime]]"
38 query-end-time="[[queryResult.info.queryEndTime]]" 38 query-end-time="[[queryResult.info.queryEndTime]]"
39 searched-term="[[queryResult.info.term]]"> 39 searched-term="[[queryResult.info.term]]">
40 </history-grouped-list> 40 </history-grouped-list>
41 </template> 41 </template>
42 </iron-pages> 42 </iron-pages>
43 43
44 <template is="history-lazy-render" id="dialog"> 44 <template is="history-lazy-render" id="dialog">
45 <dialog is="cr-dialog"> 45 <dialog is="cr-dialog">
46 <div class="title">$i18n{removeSelected}</div> 46 <div class="title">$i18n{removeSelected}</div>
(...skipping 18 matching lines...) Expand all
65 </paper-item> 65 </paper-item>
66 <paper-item id="menuRemoveButton" class="menu-item" 66 <paper-item id="menuRemoveButton" class="menu-item"
67 on-tap="onRemoveFromHistoryTap_"> 67 on-tap="onRemoveFromHistoryTap_">
68 $i18n{removeFromHistory} 68 $i18n{removeFromHistory}
69 </paper-item> 69 </paper-item>
70 </cr-shared-menu> 70 </cr-shared-menu>
71 </template> 71 </template>
72 </template> 72 </template>
73 <script src="chrome://history/list_container.js"></script> 73 <script src="chrome://history/list_container.js"></script>
74 </dom-module> 74 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/constants.js ('k') | chrome/browser/resources/md_history/list_container.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698