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

Unified Diff: chrome/browser/resources/options/content_settings.html

Issue 543983005: Add a dropdown to change the default content setting to the Website Settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix CrOS build error. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/options/website_settings.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/content_settings.html
diff --git a/chrome/browser/resources/options/content_settings.html b/chrome/browser/resources/options/content_settings.html
index f9da194af37f073147a6bd90bd60ad89527ee6dc..4454594f265fab8426624b73c016c0909e7d7cc0 100644
--- a/chrome/browser/resources/options/content_settings.html
+++ b/chrome/browser/resources/options/content_settings.html
@@ -9,7 +9,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="cookies" value="allow">
- <span i18n-content="cookies_allow"></span>
+ <span i18n-content="cookiesAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="cookies" value="allow"></span>
@@ -25,7 +25,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="cookies" value="block">
- <span i18n-content="cookies_block"></span>
+ <span i18n-content="cookiesBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="cookies" value="block"></span>
@@ -66,7 +66,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="images" value="allow">
- <span i18n-content="images_allow"></span>
+ <span i18n-content="imagesAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="images" value="allow"></span>
@@ -74,7 +74,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="images" value="block">
- <span i18n-content="images_block"></span>
+ <span i18n-content="imagesBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="images" value="block">
@@ -93,7 +93,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="javascript" value="allow">
- <span i18n-content="javascript_allow"></span>
+ <span i18n-content="javascriptAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="javascript" value="allow"></span>
@@ -101,7 +101,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="javascript" value="block">
- <span i18n-content="javascript_block"></span>
+ <span i18n-content="javascriptBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="javascript" value="block"></span>
@@ -143,7 +143,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="plugins" value="allow">
- <span i18n-content="plugins_allow"></span>
+ <span i18n-content="pluginsAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="plugins" value="allow"></span>
@@ -151,7 +151,7 @@
<div id="click_to_play" class="radio controlled-setting-with-label">
<label>
<input type="radio" name="plugins" value="ask">
- <span i18n-content="plugins_ask"></span>
+ <span i18n-content="pluginsAsk"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="plugins" value="ask"></span>
@@ -159,7 +159,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="plugins" value="block">
- <span i18n-content="plugins_block"></span>
+ <span i18n-content="pluginsBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="plugins" value="block"></span>
@@ -181,7 +181,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="popups" value="allow">
- <span i18n-content="popups_allow"></span>
+ <span i18n-content="popupsAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="popups" value="allow"></span>
@@ -189,7 +189,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="popups" value="block">
- <span i18n-content="popups_block"></span>
+ <span i18n-content="popupsBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="popups" value="block"></span>
@@ -207,7 +207,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="location" value="allow">
- <span i18n-content="location_allow"></span>
+ <span i18n-content="locationAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="location" value="allow"></span>
@@ -215,7 +215,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="location" value="ask">
- <span i18n-content="location_ask"></span>
+ <span i18n-content="locationAsk"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="location" value="ask"></span>
@@ -224,7 +224,7 @@
<label>
<input type="radio" name="location"
value="block">
- <span i18n-content="location_block"></span>
+ <span i18n-content="locationBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="location" value="block"></span>
@@ -255,7 +255,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="notifications" value="allow">
- <span i18n-content="notifications_allow"></span>
+ <span i18n-content="notificationsAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="notifications" value="allow"></span>
@@ -263,7 +263,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="notifications" value="ask">
- <span i18n-content="notifications_ask"></span>
+ <span i18n-content="notificationsAsk"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="notifications" value="ask"></span>
@@ -271,7 +271,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="notifications" value="block">
- <span i18n-content="notifications_block"></span>
+ <span i18n-content="notificationsBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="notifications" value="block"></span>
@@ -297,19 +297,19 @@
<div class="radio">
<label>
<input type="radio" name="mouselock" value="allow">
- <span i18n-content="mouselock_allow"></span>
+ <span i18n-content="mouselockAllow"></span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="mouselock" value="ask">
- <span i18n-content="mouselock_ask"></span>
+ <span i18n-content="mouselockAsk"></span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="mouselock" value="block">
- <span i18n-content="mouselock_block"></span>
+ <span i18n-content="mouselockBlock"></span>
</label>
</div>
<div class="settings-row">
@@ -395,19 +395,19 @@
<div class="radio">
<label>
<input type="radio" name="ppapi-broker" value="allow">
- <span i18n-content="ppapi_broker_allow"></span>
+ <span i18n-content="ppapiBrokerAllow"></span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="ppapi-broker" value="ask">
- <span i18n-content="ppapi_broker_ask"></span>
+ <span i18n-content="ppapiBrokerAsk"></span>
</label>
</div>
<div class="radio">
<label>
<input type="radio" name="ppapi-broker" value="block">
- <span i18n-content="ppapi_broker_block"></span>
+ <span i18n-content="ppapiBrokerBlock"></span>
</label>
</div>
<div class="settings-row">
@@ -424,7 +424,7 @@
<label>
<input type="radio" name="multiple-automatic-downloads"
value="allow">
- <span i18n-content="multiple-automatic-downloads_allow"></span>
+ <span i18n-content="multipleAutomaticDownloadsAllow"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="multiple-automatic-downloads" value="allow">
@@ -433,7 +433,7 @@
<div class="radio controlled-setting-with-label">
<label>
<input type="radio" name="multiple-automatic-downloads" value="ask">
- <span i18n-content="multiple-automatic-downloads_ask"></span>
+ <span i18n-content="multipleAutomaticDownloadsAsk"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="multiple-automatic-downloads" value="ask"></span>
@@ -442,7 +442,7 @@
<label>
<input type="radio" name="multiple-automatic-downloads"
value="block">
- <span i18n-content="multiple-automatic-downloads_block"></span>
+ <span i18n-content="multipleAutomaticDownloadsBlock"></span>
</label>
<span class="controlled-setting-indicator"
content-setting="multiple-automatic-downloads" value="block">
« no previous file with comments | « no previous file | chrome/browser/resources/options/website_settings.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698