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

Side by Side Diff: chrome/browser/resources/options/content_settings.html

Issue 7717016: Revert 97955 - First pass on intents options UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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 | Annotate | Revision Log
OLDNEW
1 <div id="content-settings-page" class="page" hidden> 1 <div id="content-settings-page" class="page" hidden>
2 <h1 i18n-content="contentSettingsPage"></h1> 2 <h1 i18n-content="contentSettingsPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <!-- Cookie filter tab contents --> 4 <!-- Cookie filter tab contents -->
5 <section> 5 <section>
6 <h3 i18n-content="cookies_tab_label"></h3> 6 <h3 i18n-content="cookies_tab_label"></h3>
7 <div> 7 <div>
8 <div class="radio"> 8 <div class="radio">
9 <label> 9 <label>
10 <input type="radio" name="cookies" value="allow"> 10 <input type="radio" name="cookies" value="allow">
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 <label> 205 <label>
206 <input type="radio" name="notifications" value="block"> 206 <input type="radio" name="notifications" value="block">
207 <span i18n-content="notifications_block"></span> 207 <span i18n-content="notifications_block"></span>
208 </label> 208 </label>
209 </div> 209 </div>
210 <button class="exceptions-list-button" contentType="notifications" 210 <button class="exceptions-list-button" contentType="notifications"
211 i18n-content="manage_exceptions"></button> 211 i18n-content="manage_exceptions"></button>
212 </div> 212 </div>
213 </section> 213 </section>
214 <!-- Intent registration filter tab contents --> 214 <!-- Intent registration filter tab contents -->
215 <if expr="pp_ifdef('enable_web_intents')"> 215 <section id="intent-filter">
216 <section id="intents-section">
217 <h3 i18n-content="intentsTabLabel" class="content-settings-header"></h3> 216 <h3 i18n-content="intentsTabLabel" class="content-settings-header"></h3>
218 <div> 217 <div>
219 <div class="radio"> 218 <div class="radio">
220 <label> 219 <label>
221 <input type="radio" name="intents" value="allow"> 220 <input type="radio" name="intents" value="allow">
222 <span i18n-content="intentsAllow"></span> 221 <span i18n-content="intentsAllow"></span>
223 </label> 222 </label>
224 </div>
225 <div class="radio">
226 <label>
227 <input type="radio" name="intents" value="ask">
228 <span i18n-content="intentsAsk"></span>
229 </label>
230 </div>
231 <div class="radio">
232 <label>
233 <input type="radio" name="intents" value="block">
234 <span i18n-content="intentsBlock"></span>
235 </label>
236 </div>
237 <button class="exceptions-list-button" contentType="intents"
238 i18n-content="manage_exceptions"></button>
239 <button id="manage-intents-button" contentType="intents"
240 i18n-content="manageIntents"></button>
241 </div> 223 </div>
242 </section> 224 <div class="radio">
243 </if> 225 <label>
226 <input type="radio" name="intents" value="ask">
227 <span i18n-content="intentsAsk"></span>
228 </label>
229 </div>
230 <div class="radio">
231 <label>
232 <input type="radio" name="intents" value="block">
233 <span i18n-content="intentsBlock"></span>
234 </label>
235 </div>
236 <button class="exceptions-list-button" contentType="intents"
237 i18n-content="manage_exceptions"></button>
238 </div>
239 </section>
244 </div> 240 </div>
245 </div> 241 </div>
OLDNEW
« no previous file with comments | « chrome/browser/intents/web_intents_registry_factory.h ('k') | chrome/browser/resources/options/content_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698