summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui/content_settings_handler.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/dom_ui/content_settings_handler.cc')
-rw-r--r--chrome/browser/dom_ui/content_settings_handler.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/dom_ui/content_settings_handler.cc b/chrome/browser/dom_ui/content_settings_handler.cc
index db59df4..c89fac3 100644
--- a/chrome/browser/dom_ui/content_settings_handler.cc
+++ b/chrome/browser/dom_ui/content_settings_handler.cc
@@ -63,8 +63,6 @@ std::string ContentSettingToString(ContentSetting setting) {
switch (setting) {
case CONTENT_SETTING_ALLOW:
return "allow";
- case CONTENT_SETTING_ASK:
- return "ask";
case CONTENT_SETTING_BLOCK:
return "block";
@@ -77,8 +75,6 @@ std::string ContentSettingToString(ContentSetting setting) {
ContentSetting ContentSettingFromString(const std::string& name) {
if (name == "allow")
return CONTENT_SETTING_ALLOW;
- if (name == "ask")
- return CONTENT_SETTING_ASK;
if (name == "block")
return CONTENT_SETTING_BLOCK;
@@ -110,8 +106,6 @@ void ContentSettingsHandler::GetLocalizedValues(
l10n_util::GetString(IDS_MODIFY_COOKIE_STORING_LABEL));
localized_strings->SetString(L"cookies_allow",
l10n_util::GetString(IDS_COOKIES_ALLOW_RADIO));
- localized_strings->SetString(L"cookies_ask",
- l10n_util::GetString(IDS_COOKIES_ASK_EVERY_TIME_RADIO));
localized_strings->SetString(L"cookies_block",
l10n_util::GetString(IDS_COOKIES_BLOCK_RADIO));
localized_strings->SetString(L"cookies_block_3rd_party",