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

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

Issue 10826164: Add infobar for PPAPI broker usage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 years, 3 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 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="contentSettingsPage"></h1> 3 <h1 i18n-content="contentSettingsPage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <!-- Cookie filter tab contents --> 5 <!-- Cookie filter tab contents -->
6 <section> 6 <section>
7 <h3 i18n-content="cookies_tab_label"></h3> 7 <h3 i18n-content="cookies_tab_label"></h3>
8 <div> 8 <div>
9 <div class="radio"> 9 <div class="radio">
10 <label> 10 <label>
(...skipping 26 matching lines...) Expand all
37 <input id="clear-cookies-on-exit" 37 <input id="clear-cookies-on-exit"
38 pref="profile.clear_site_data_on_exit" type="checkbox"> 38 pref="profile.clear_site_data_on_exit" type="checkbox">
39 <span i18n-content="cookies_lso_clear_when_close" 39 <span i18n-content="cookies_lso_clear_when_close"
40 class="clear-plugin-lso-data-enabled"></span> 40 class="clear-plugin-lso-data-enabled"></span>
41 <span i18n-content="cookies_clear_when_close" 41 <span i18n-content="cookies_clear_when_close"
42 class="clear-plugin-lso-data-disabled"></span> 42 class="clear-plugin-lso-data-disabled"></span>
43 </label> 43 </label>
44 </div> 44 </div>
45 <div class="settings-row"> 45 <div class="settings-row">
46 <button class="exceptions-list-button" contentType="cookies" 46 <button class="exceptions-list-button" contentType="cookies"
47 i18n-content="manage_exceptions"></button> 47 i18n-content="manageExceptions"></button>
48 <button id="show-cookies-button" 48 <button id="show-cookies-button"
49 i18n-content="cookies_show_cookies"></button> 49 i18n-content="cookies_show_cookies"></button>
50 <button id="show-app-cookies-button" 50 <button id="show-app-cookies-button"
51 i18n-content="cookies_show_app_cookies"></button> 51 i18n-content="cookies_show_app_cookies"></button>
52 </div> 52 </div>
53 </div> 53 </div>
54 </section> 54 </section>
55 <!-- Image filter --> 55 <!-- Image filter -->
56 <section> 56 <section>
57 <h3 i18n-content="images_tab_label"></h3> 57 <h3 i18n-content="images_tab_label"></h3>
58 <div> 58 <div>
59 <div class="radio"> 59 <div class="radio">
60 <label> 60 <label>
61 <input type="radio" name="images" value="allow"> 61 <input type="radio" name="images" value="allow">
62 <span i18n-content="images_allow"></span> 62 <span i18n-content="images_allow"></span>
63 </label> 63 </label>
64 </div> 64 </div>
65 <div class="radio"> 65 <div class="radio">
66 <label> 66 <label>
67 <input type="radio" name="images" value="block"> 67 <input type="radio" name="images" value="block">
68 <span i18n-content="images_block"></span> 68 <span i18n-content="images_block"></span>
69 </label> 69 </label>
70 </div> 70 </div>
71 <div class="settings-row"> 71 <div class="settings-row">
72 <button class="exceptions-list-button" contentType="images" 72 <button class="exceptions-list-button" contentType="images"
73 i18n-content="manage_exceptions"></button> 73 i18n-content="manageExceptions"></button>
74 </div> 74 </div>
75 </div> 75 </div>
76 </section> 76 </section>
77 <!-- JavaScript filter --> 77 <!-- JavaScript filter -->
78 <section> 78 <section>
79 <h3 i18n-content="javascript_tab_label"></h3> 79 <h3 i18n-content="javascript_tab_label"></h3>
80 <div> 80 <div>
81 <div class="radio"> 81 <div class="radio">
82 <label> 82 <label>
83 <input type="radio" name="javascript" value="allow"> 83 <input type="radio" name="javascript" value="allow">
84 <span i18n-content="javascript_allow"></span> 84 <span i18n-content="javascript_allow"></span>
85 </label> 85 </label>
86 </div> 86 </div>
87 <div class="radio"> 87 <div class="radio">
88 <label> 88 <label>
89 <input type="radio" name="javascript" value="block"> 89 <input type="radio" name="javascript" value="block">
90 <span i18n-content="javascript_block"></span> 90 <span i18n-content="javascript_block"></span>
91 </label> 91 </label>
92 </div> 92 </div>
93 <div class="settings-row"> 93 <div class="settings-row">
94 <button class="exceptions-list-button" contentType="javascript" 94 <button class="exceptions-list-button" contentType="javascript"
95 i18n-content="manage_exceptions"></button> 95 i18n-content="manageExceptions"></button>
96 </div> 96 </div>
97 </div> 97 </div>
98 </section> 98 </section>
99 <!-- Handlers settings --> 99 <!-- Handlers settings -->
100 <section id="handlers-section"> 100 <section id="handlers-section">
101 <h3 i18n-content="handlers_tab_label"></h3> 101 <h3 i18n-content="handlers_tab_label"></h3>
102 <div> 102 <div>
103 <div class="radio"> 103 <div class="radio">
104 <label> 104 <label>
105 <input type="radio" name="handlers" value="allow" 105 <input type="radio" name="handlers" value="allow"
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 </label> 137 </label>
138 </div> 138 </div>
139 <div class="radio"> 139 <div class="radio">
140 <label> 140 <label>
141 <input type="radio" name="plugins" value="block"> 141 <input type="radio" name="plugins" value="block">
142 <span i18n-content="plugins_block"></span> 142 <span i18n-content="plugins_block"></span>
143 </label> 143 </label>
144 </div> 144 </div>
145 <div class="settings-row"> 145 <div class="settings-row">
146 <button class="exceptions-list-button" contentType="plugins" 146 <button class="exceptions-list-button" contentType="plugins"
147 i18n-content="manage_exceptions"></button> 147 i18n-content="manageExceptions"></button>
148 </div> 148 </div>
149 <div id="disable-plugins-container"> 149 <div id="disable-plugins-container">
150 <a href="chrome://plugins" i18n-content="disableIndividualPlugins" 150 <a href="chrome://plugins" i18n-content="disableIndividualPlugins"
151 target="_blank"></a> 151 target="_blank"></a>
152 </div> 152 </div>
153 </div> 153 </div>
154 </section> 154 </section>
155 <!-- Pop-ups filter --> 155 <!-- Pop-ups filter -->
156 <section> 156 <section>
157 <h3 i18n-content="popups_tab_label" class="content-settings-header"></h3> 157 <h3 i18n-content="popups_tab_label" class="content-settings-header"></h3>
158 <div> 158 <div>
159 <div class="radio"> 159 <div class="radio">
160 <label> 160 <label>
161 <input type="radio" name="popups" value="allow"> 161 <input type="radio" name="popups" value="allow">
162 <span i18n-content="popups_allow"></span> 162 <span i18n-content="popups_allow"></span>
163 </label> 163 </label>
164 </div> 164 </div>
165 <div class="radio"> 165 <div class="radio">
166 <label> 166 <label>
167 <input type="radio" name="popups" value="block"> 167 <input type="radio" name="popups" value="block">
168 <span i18n-content="popups_block"></span> 168 <span i18n-content="popups_block"></span>
169 </label> 169 </label>
170 </div> 170 </div>
171 <div class="settings-row"> 171 <div class="settings-row">
172 <button class="exceptions-list-button" contentType="popups" 172 <button class="exceptions-list-button" contentType="popups"
173 i18n-content="manage_exceptions"></button> 173 i18n-content="manageExceptions"></button>
174 </div> 174 </div>
175 </div> 175 </div>
176 </section> 176 </section>
177 <!-- Location filter --> 177 <!-- Location filter -->
178 <section> 178 <section>
179 <h3 i18n-content="location_tab_label"></h3> 179 <h3 i18n-content="location_tab_label"></h3>
180 <div> 180 <div>
181 <div class="radio"> 181 <div class="radio">
182 <label> 182 <label>
183 <input type="radio" name="location" value="allow"> 183 <input type="radio" name="location" value="allow">
184 <span i18n-content="location_allow"></span> 184 <span i18n-content="location_allow"></span>
185 </label> 185 </label>
186 </div> 186 </div>
187 <div class="radio"> 187 <div class="radio">
188 <label> 188 <label>
189 <input type="radio" name="location" value="ask"> 189 <input type="radio" name="location" value="ask">
190 <span i18n-content="location_ask"></span> 190 <span i18n-content="location_ask"></span>
191 </label> 191 </label>
192 </div> 192 </div>
193 <div class="radio"> 193 <div class="radio">
194 <label> 194 <label>
195 <input type="radio" name="location" value="block"> 195 <input type="radio" name="location" value="block">
196 <span i18n-content="location_block"></span> 196 <span i18n-content="location_block"></span>
197 </label> 197 </label>
198 </div> 198 </div>
199 <div class="settings-row"> 199 <div class="settings-row">
200 <button class="exceptions-list-button" contentType="location" 200 <button class="exceptions-list-button" contentType="location"
201 i18n-content="manage_exceptions"></button> 201 i18n-content="manageExceptions"></button>
202 </div> 202 </div>
203 </div> 203 </div>
204 </section> 204 </section>
205 <!-- Notifications filter tab contents --> 205 <!-- Notifications filter tab contents -->
206 <section> 206 <section>
207 <h3 i18n-content="notifications_tab_label"></h3> 207 <h3 i18n-content="notifications_tab_label"></h3>
208 <div> 208 <div>
209 <div class="radio"> 209 <div class="radio">
210 <label> 210 <label>
211 <input type="radio" name="notifications" value="allow"> 211 <input type="radio" name="notifications" value="allow">
212 <span i18n-content="notifications_allow"></span> 212 <span i18n-content="notifications_allow"></span>
213 </label> 213 </label>
214 </div> 214 </div>
215 <div class="radio"> 215 <div class="radio">
216 <label> 216 <label>
217 <input type="radio" name="notifications" value="ask"> 217 <input type="radio" name="notifications" value="ask">
218 <span i18n-content="notifications_ask"></span> 218 <span i18n-content="notifications_ask"></span>
219 </label> 219 </label>
220 </div> 220 </div>
221 <div class="radio"> 221 <div class="radio">
222 <label> 222 <label>
223 <input type="radio" name="notifications" value="block"> 223 <input type="radio" name="notifications" value="block">
224 <span i18n-content="notifications_block"></span> 224 <span i18n-content="notifications_block"></span>
225 </label> 225 </label>
226 </div> 226 </div>
227 <div class="settings-row"> 227 <div class="settings-row">
228 <button class="exceptions-list-button" contentType="notifications" 228 <button class="exceptions-list-button" contentType="notifications"
229 i18n-content="manage_exceptions"></button> 229 i18n-content="manageExceptions"></button>
230 </div> 230 </div>
231 </div> 231 </div>
232 </section> 232 </section>
233 <!-- Fullscreen filter --> 233 <!-- Fullscreen filter -->
234 <section> 234 <section>
235 <h3 i18n-content="fullscreen_tab_label"></h3> 235 <h3 i18n-content="fullscreen_tab_label"></h3>
236 <div class="settings-row"> 236 <div class="settings-row">
237 <button class="exceptions-list-button" contentType="fullscreen" 237 <button class="exceptions-list-button" contentType="fullscreen"
238 i18n-content="manage_exceptions"></button> 238 i18n-content="manageExceptions"></button>
239 </div> 239 </div>
240 </section> 240 </section>
241 <!-- Mouse Lock filter --> 241 <!-- Mouse Lock filter -->
242 <section> 242 <section>
243 <h3 i18n-content="mouselock_tab_label"></h3> 243 <h3 i18n-content="mouselock_tab_label"></h3>
244 <div> 244 <div>
245 <div class="radio"> 245 <div class="radio">
246 <label> 246 <label>
247 <input type="radio" name="mouselock" value="allow"> 247 <input type="radio" name="mouselock" value="allow">
248 <span i18n-content="mouselock_allow"></span> 248 <span i18n-content="mouselock_allow"></span>
249 </label> 249 </label>
250 </div> 250 </div>
251 <div class="radio"> 251 <div class="radio">
252 <label> 252 <label>
253 <input type="radio" name="mouselock" value="ask"> 253 <input type="radio" name="mouselock" value="ask">
254 <span i18n-content="mouselock_ask"></span> 254 <span i18n-content="mouselock_ask"></span>
255 </label> 255 </label>
256 </div> 256 </div>
257 <div class="radio"> 257 <div class="radio">
258 <label> 258 <label>
259 <input type="radio" name="mouselock" value="block"> 259 <input type="radio" name="mouselock" value="block">
260 <span i18n-content="mouselock_block"></span> 260 <span i18n-content="mouselock_block"></span>
261 </label> 261 </label>
262 </div> 262 </div>
263 <div class="settings-row"> 263 <div class="settings-row">
264 <button class="exceptions-list-button" contentType="mouselock" 264 <button class="exceptions-list-button" contentType="mouselock"
265 i18n-content="manage_exceptions"></button> 265 i18n-content="manageExceptions"></button>
266 </div> 266 </div>
267 </div> 267 </div>
268 </section> 268 </section>
269 <!-- Intent registration filter --> 269 <!-- Intent registration filter -->
270 <section> 270 <section>
271 <h3 i18n-content="webIntentsTabLabel" class="content-settings-header"> 271 <h3 i18n-content="webIntentsTabLabel" class="content-settings-header">
272 </h3> 272 </h3>
273 <div class="checkbox"> 273 <div class="checkbox">
274 <label> 274 <label>
275 <input pref="webintents.enabled" type="checkbox"> 275 <input pref="webintents.enabled" type="checkbox">
(...skipping 13 matching lines...) Expand all
289 </div> 289 </div>
290 <div class="radio"> 290 <div class="radio">
291 <label> 291 <label>
292 <input type="radio" name="pepper-flash-cameramic" value="block"> 292 <input type="radio" name="pepper-flash-cameramic" value="block">
293 <span i18n-content="pepperFlashCameramicBlock"></span> 293 <span i18n-content="pepperFlashCameramicBlock"></span>
294 </label> 294 </label>
295 </div> 295 </div>
296 <div class="settings-row"> 296 <div class="settings-row">
297 <button class="exceptions-list-button" 297 <button class="exceptions-list-button"
298 contentType="pepper-flash-cameramic" 298 contentType="pepper-flash-cameramic"
299 i18n-content="manage_exceptions"></button> 299 i18n-content="manageExceptions"></button>
300 </div> 300 </div>
301 </div> 301 </div>
302 </section> 302 </section>
303 <if expr="pp_ifdef('chromeos')"> 303 <if expr="pp_ifdef('chromeos')">
304 <!-- Protected Content filter --> 304 <!-- Protected Content filter -->
305 <section guest-visibility="disabled"> 305 <section guest-visibility="disabled">
306 <h3 i18n-content="protectedContentTabLabel" 306 <h3 i18n-content="protectedContentTabLabel"
307 class="content-settings-header"></h3> 307 class="content-settings-header"></h3>
308 <div> 308 <div>
309 <div class="settings-row"> 309 <div class="settings-row">
(...skipping 19 matching lines...) Expand all
329 </label> 329 </label>
330 </div> 330 </div>
331 <div class="radio"> 331 <div class="radio">
332 <label> 332 <label>
333 <input type="radio" name="media-stream" value="block"> 333 <input type="radio" name="media-stream" value="block">
334 <span i18n-content="mediaStreamBlock"></span> 334 <span i18n-content="mediaStreamBlock"></span>
335 </label> 335 </label>
336 </div> 336 </div>
337 <div class="settings-row"> 337 <div class="settings-row">
338 <button class="exceptions-list-button" contentType="media-stream" 338 <button class="exceptions-list-button" contentType="media-stream"
339 i18n-content="manage_exceptions"></button> 339 i18n-content="manageExceptions"></button>
340 </div> 340 </div>
341 </div> 341 </div>
342 </section> 342 </section>
343 <!-- PPAPI broker -->
344 <section>
345 <h3 i18n-content="ppapi_broker_tab_label"></h3>
346 <div>
347 <div class="radio">
348 <label>
349 <input type="radio" name="ppapi-broker" value="allow">
350 <span i18n-content="ppapi_broker_allow"></span>
351 </label>
352 </div>
353 <div class="radio">
354 <label>
355 <input type="radio" name="ppapi-broker" value="ask">
356 <span i18n-content="ppapi_broker_ask"></span>
357 </label>
358 </div>
359 <div class="radio">
360 <label>
361 <input type="radio" name="ppapi-broker" value="block">
362 <span i18n-content="ppapi_broker_block"></span>
363 </label>
364 </div>
365 <button class="exceptions-list-button" contentType="media-stream"
366 i18n-content="manageExceptions"></button>
367 </div>
368 </section>
343 <section id="media-galleries-section" hidden> 369 <section id="media-galleries-section" hidden>
344 <h3 i18n-content="mediaGalleriesSectionLabel"></h3> 370 <h3 i18n-content="mediaGalleriesSectionLabel"></h3>
345 <div class="settings-row"> 371 <div class="settings-row">
346 <button id="manage-galleries-button" 372 <button id="manage-galleries-button"
347 i18n-content="manageGalleriesButton"></button> 373 i18n-content="manageGalleriesButton"></button>
348 </div> 374 </div>
349 </section> 375 </section>
350 </div> 376 </div>
351 <div class="action-area"> 377 <div class="action-area">
352 <div class="button-strip"> 378 <div class="button-strip">
353 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> 379 <button id="content-settings-overlay-confirm" i18n-content="ok"></button>
354 </div> 380 </div>
355 </div> 381 </div>
356 </div> 382 </div>
OLDNEW
« no previous file with comments | « chrome/browser/pepper_broker_observer.cc ('k') | chrome/browser/resources/options/content_settings_exceptions_area.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698