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

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

Issue 2068613002: [MD History] Add URL parameter for search. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@routing
Patch Set: rebase Created 4 years, 5 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/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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 <app-drawer id="drawer" tabindex="0" on-focus="onDrawerFocus_" swipe-open 91 <app-drawer id="drawer" tabindex="0" on-focus="onDrawerFocus_" swipe-open
92 align="start"> 92 align="start">
93 <div id="drawer-header"> 93 <div id="drawer-header">
94 <h1>$i18n{title}</h1> 94 <h1>$i18n{title}</h1>
95 </div> 95 </div>
96 <iron-selector id="menu" selected="{{selectedPage}}" 96 <iron-selector id="menu" selected="{{selectedPage}}"
97 selectable=".page-item" attr-for-selected="path" 97 selectable=".page-item" attr-for-selected="path"
98 fallback-selection="history" 98 fallback-selection="history"
99 on-iron-activate="onSelectorActivate_"> 99 on-iron-activate="onSelectorActivate_">
100 <a href="/" class="page-item" path="history"> 100 <a href="/[[getQueryString_(route)]]" class="page-item" path="history">
101 $i18n{historyMenuItem} 101 $i18n{historyMenuItem}
102 </a> 102 </a>
103 <a href="/syncedTabs" class="page-item" path="syncedTabs"> 103 <a href="/syncedTabs[[getQueryString_(route)]]" class="page-item"
104 path="syncedTabs">
104 $i18n{openTabsMenuItem} 105 $i18n{openTabsMenuItem}
105 </a> 106 </a>
106 <div class="separator"></div> 107 <div class="separator"></div>
107 <a href="chrome://settings/clearBrowserData" 108 <a href="chrome://settings/clearBrowserData"
108 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> 109 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data">
109 $i18n{clearBrowsingData} 110 $i18n{clearBrowsingData}
110 </a> 111 </a>
111 </iron-selector> 112 </iron-selector>
112 </app-drawer> 113 </app-drawer>
113 </template> 114 </template>
114 <script src="chrome://history/side_bar.js"></script> 115 <script src="chrome://history/side_bar.js"></script>
115 </dom-module> 116 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698