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

Side by Side Diff: chrome/browser/resources/history/history.html

Issue 1143183002: Proof of concept implementation of context based history filtering. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="is_android or is_ios"> 5 <if expr="is_android or is_ios">
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, 6 <meta name="viewport" content="width=device-width, initial-scale=1.0,
7 maximum-scale=1.0, user-scalable=no"> 7 maximum-scale=1.0, user-scalable=no">
8 </if> 8 </if>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css"> 10 <link rel="stylesheet" href="chrome://resources/css/butter_bar.css">
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 </div> 73 </div>
74 </if> 74 </if>
75 75
76 <div id="history-page" class="page"> 76 <div id="history-page" class="page">
77 <div id="scrolling-container"> 77 <div id="scrolling-container">
78 <header> 78 <header>
79 <h1 i18n-content="history"></h1> 79 <h1 i18n-content="history"></h1>
80 <div id="search-form" class="search-field-container"> 80 <div id="search-form" class="search-field-container">
81 <input type="search" id="search-field" 81 <input type="search" id="search-field"
82 i18n-values="aria-label:searchButton"> 82 i18n-values="aria-label:searchButton">
83 <select id="context-chooser">
84 <option value="0">None</option>
85 <option value="1">Copy</option>
86 <option value="2">Save Image</option>
87 <option value="3">Print</option>
88 <option value="4">Media Play</option>
89 </select>
83 <input type="submit" id="search-button" 90 <input type="submit" id="search-button"
84 i18n-values="value:searchButton" aria-controls="results-header"> 91 i18n-values="value:searchButton" aria-controls="results-header">
85 </div> 92 </div>
86 <div id="filter-controls" hidden> 93 <div id="filter-controls" hidden>
87 <div id="range-controls"> 94 <div id="range-controls">
88 <button id="range-today" i18n-content="rangeToday" 95 <button id="range-today" i18n-content="rangeToday"
89 i18n-values="aria-label:rangeToday" disabled></button> 96 i18n-values="aria-label:rangeToday" disabled></button>
90 <button id="range-previous" i18n-values="aria-label:rangePrevious" 97 <button id="range-previous" i18n-values="aria-label:rangePrevious"
91 disabled></button> 98 disabled></button>
92 <button id="range-next" i18n-values="aria-label:rangeNext" disabled> 99 <button id="range-next" i18n-values="aria-label:rangeNext" disabled>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 <cr-menu id="action-menu" hidden> 146 <cr-menu id="action-menu" hidden>
140 <button id="more-from-site" i18n-content="moreFromSite"></button> 147 <button id="more-from-site" i18n-content="moreFromSite"></button>
141 <button id="remove-visit" i18n-content="removeFromHistory" 148 <button id="remove-visit" i18n-content="removeFromHistory"
142 command="#remove-visit-command"></button> 149 command="#remove-visit-command"></button>
143 </cr-menu> 150 </cr-menu>
144 151
145 <script src="chrome://history-frame/strings.js"></script> 152 <script src="chrome://history-frame/strings.js"></script>
146 <script src="chrome://resources/js/i18n_template.js"></script> 153 <script src="chrome://resources/js/i18n_template.js"></script>
147 </body> 154 </body>
148 </html> 155 </html>
OLDNEW
« no previous file with comments | « chrome/browser/renderer_context_menu/render_view_context_menu.cc ('k') | chrome/browser/resources/history/history.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698