OLD | NEW |
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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 <section> | 248 <section> |
249 <h3 i18n-content="webIntentsTabLabel" class="content-settings-header"> | 249 <h3 i18n-content="webIntentsTabLabel" class="content-settings-header"> |
250 </h3> | 250 </h3> |
251 <div class="checkbox"> | 251 <div class="checkbox"> |
252 <label> | 252 <label> |
253 <input pref="webintents.enabled" type="checkbox"> | 253 <input pref="webintents.enabled" type="checkbox"> |
254 <span i18n-content="allowWebIntents"></span> | 254 <span i18n-content="allowWebIntents"></span> |
255 </label> | 255 </label> |
256 </div> | 256 </div> |
257 </section> | 257 </section> |
258 <if expr="pp_ifdef('chromeos')"> | 258 <!-- TODO(markusheintz): Renable the Protected Content section once the 3rd |
| 259 party dependencies of the backend are ready. --> |
| 260 <if expr="pp_ifdef('chromeos') and False"> |
259 <!-- Protected Content filter --> | 261 <!-- Protected Content filter --> |
260 <section guest-visibility="disabled"> | 262 <section guest-visibility="disabled"> |
261 <h3 i18n-content="protectedContentTabLabel" | 263 <h3 i18n-content="protectedContentTabLabel" |
262 class="content-settings-header"></h3> | 264 class="content-settings-header"></h3> |
263 <div> | 265 <div> |
264 <div class="settings-row"> | 266 <div class="settings-row"> |
265 <span i18n-content="protectedContentInfo"></span> | 267 <span i18n-content="protectedContentInfo"></span> |
266 </div> | 268 </div> |
267 <div class="checkbox"> | 269 <div class="checkbox"> |
268 <label> | 270 <label> |
269 <input pref="settings.privacy.drm_enabled" type="checkbox"> | 271 <input pref="settings.privacy.drm_enabled" type="checkbox"> |
270 <span i18n-content="protectedContentEnable"></span> | 272 <span i18n-content="protectedContentEnable"></span> |
271 </label> | 273 </label> |
272 </div> | 274 </div> |
273 </div> | 275 </div> |
274 </section> | 276 </section> |
275 </if> | 277 </if> |
276 </div> | 278 </div> |
277 <div class="action-area"> | 279 <div class="action-area"> |
278 <div class="button-strip"> | 280 <div class="button-strip"> |
279 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> | 281 <button id="content-settings-overlay-confirm" i18n-content="ok"></button> |
280 </div> | 282 </div> |
281 </div> | 283 </div> |
282 </div> | 284 </div> |
OLD | NEW |