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

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

Issue 15716012: Add a Preference for Google Services to Use the User's Location (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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 <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 <span class="controlled-setting-with-label"> 10 <span class="controlled-setting-with-label">
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 <input id="location-block" type="radio" name="location" 278 <input id="location-block" type="radio" name="location"
279 value="block"> 279 value="block">
280 <span> 280 <span>
281 <label for="location-block" i18n-content="location_block"></label> 281 <label for="location-block" i18n-content="location_block"></label>
282 <span class="controlled-setting-indicator" 282 <span class="controlled-setting-indicator"
283 content-setting="location" value="block"> 283 content-setting="location" value="block">
284 </span> 284 </span>
285 </span> 285 </span>
286 </span> 286 </span>
287 </div> 287 </div>
288 <if expr="pp_ifdef('enable_google_now')">
Evan Stade 2013/06/10 18:06:10 if expr should not be indented at all (like #ifdef
robliao 2013/06/10 18:58:49 Done.
289 <div class="checkbox" id="geolocationCheckbox" hidden>
290 <span class="controlled-setting-with-label">
291 <input id="googleGeolocationAccessEnabled"
292 pref="googlegeolocationaccess.enabled"
293 metric="Options_GoogleGeolocationAccessCheckbox"
294 type="checkbox">
295 <span>
296 <label for="googleGeolocationAccessEnabled"
297 i18n-content="googleGeolocationAccessEnable">
298 </label>
299 <span class="controlled-setting-indicator"
300 pref="googlegeolocationaccess.enabled">
301 </span>
302 </span>
303 </span>
304 </div>
305 </if>
288 <div class="settings-row"> 306 <div class="settings-row">
289 <button class="exceptions-list-button" contentType="location" 307 <button class="exceptions-list-button" contentType="location"
290 i18n-content="manageExceptions"></button> 308 i18n-content="manageExceptions"></button>
291 </div> 309 </div>
292 </div> 310 </div>
293 </section> 311 </section>
294 <!-- Notifications filter tab contents --> 312 <!-- Notifications filter tab contents -->
295 <section id="notifications-section"> 313 <section id="notifications-section">
296 <h3 i18n-content="notifications_tab_label"></h3> 314 <h3 i18n-content="notifications_tab_label"></h3>
297 <div> 315 <div>
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
487 </div> 505 </div>
488 </section> 506 </section>
489 </div> 507 </div>
490 <div class="action-area"> 508 <div class="action-area">
491 <div class="button-strip"> 509 <div class="button-strip">
492 <button id="content-settings-overlay-confirm" i18n-content="done"> 510 <button id="content-settings-overlay-confirm" i18n-content="done">
493 </button> 511 </button>
494 </div> 512 </div>
495 </div> 513 </div>
496 </div> 514 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698