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

Side by Side Diff: chrome/browser/resources/md_history/app.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: 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
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/html/cr/ui.html"> 2 <link rel="import" href="chrome://resources/html/cr/ui.html">
3 <link rel="import" href="chrome://resources/html/cr/ui/command.html"> 3 <link rel="import" href="chrome://resources/html/cr/ui/command.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a pp-drawer.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a pp-drawer.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-location. html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-location. html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-route.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/app-route/app-route.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-media-query/iron-m edia-query.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.h tml">
9 <link rel="import" href="chrome://history/history_toolbar.html"> 9 <link rel="import" href="chrome://history/history_toolbar.html">
10 <link rel="import" href="chrome://history/list_container.html"> 10 <link rel="import" href="chrome://history/list_container.html">
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 selected="[[getSelectedPage_(selectedPage_, items)]]" 87 selected="[[getSelectedPage_(selectedPage_, items)]]"
88 items="{{items}}"> 88 items="{{items}}">
89 <history-list-container id="history" query-state="{{queryState_}}" 89 <history-list-container id="history" query-state="{{queryState_}}"
90 query-result="[[queryResult_]]" grouped="[[grouped_]]" 90 query-result="[[queryResult_]]" grouped="[[grouped_]]"
91 path="history"> 91 path="history">
92 </history-list-container> 92 </history-list-container>
93 <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]"> 93 <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]">
94 <history-synced-device-manager id="synced-devices" 94 <history-synced-device-manager id="synced-devices"
95 session-list="[[queryResult_.sessionList]]" 95 session-list="[[queryResult_.sessionList]]"
96 search-term=[[queryState_.searchTerm]] 96 search-term=[[queryState_.searchTerm]]
97 sign-in-state={{isUserSignedIn}}
tsergeant 2016/08/15 02:48:38 This and the above should have "quotes"
calamity 2016/08/15 05:59:18 #howdidthiseverwork
Dan Beam 2016/08/15 18:07:05 https://www.w3.org/TR/2011/WD-html5-20110113/token
97 path="syncedTabs"> 98 path="syncedTabs">
98 </history-synced-device-manager> 99 </history-synced-device-manager>
99 </template> 100 </template>
100 </iron-pages> 101 </iron-pages>
101 </div> 102 </div>
102 103
103 <template is="dom-if" if="[[hasDrawer_]]"> 104 <template is="dom-if" if="[[hasDrawer_]]">
104 <app-drawer id="drawer" swipe-open align="start" tabindex="0"> 105 <app-drawer id="drawer" swipe-open align="start" tabindex="0">
105 <div id="drawer-header"> 106 <div id="drawer-header">
106 <h1>$i18n{title}</h1> 107 <h1>$i18n{title}</h1>
107 </div> 108 </div>
108 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" 109 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]"
109 route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer> 110 route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer>
110 </history-side-bar> 111 </history-side-bar>
111 </app-drawer> 112 </app-drawer>
112 </template> 113 </template>
113 114
114 <iron-media-query query="(max-width: 1023px)" 115 <iron-media-query query="(max-width: 1023px)"
115 query-matches="{{hasDrawer_}}"> 116 query-matches="{{hasDrawer_}}">
116 </iron-media-query> 117 </iron-media-query>
117 </template> 118 </template>
118 <script src="chrome://history/app.js"></script> 119 <script src="chrome://history/app.js"></script>
119 </dom-module> 120 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/md_history/app.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698