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

Unified Diff: chrome/browser/content_settings/tab_specific_content_settings.cc

Issue 2171713002: Safe browsing subresource filter bubble UI skeleton. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Verified xib file Created 4 years, 5 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
Index: chrome/browser/content_settings/tab_specific_content_settings.cc
diff --git a/chrome/browser/content_settings/tab_specific_content_settings.cc b/chrome/browser/content_settings/tab_specific_content_settings.cc
index 53c98ae6abf396adb6c7eaa5cc7f3314cbcd97b2..a4f41b41f3e7cac0dd9f27e7c3c4f65a81df9780 100644
--- a/chrome/browser/content_settings/tab_specific_content_settings.cc
+++ b/chrome/browser/content_settings/tab_specific_content_settings.cc
@@ -103,6 +103,8 @@ TabSpecificContentSettings::TabSpecificContentSettings(WebContents* tab)
pending_protocol_handler_setting_(CONTENT_SETTING_DEFAULT),
load_plugins_link_enabled_(true),
microphone_camera_state_(MICROPHONE_CAMERA_NOT_ACCESSED),
+ subresource_filter_enabled_(false),
+ subresource_filter_blockage_indicated_(false),
observer_(this) {
ClearBlockedContentSettingsExceptForCookies();
ClearCookieSpecificContentSettings();
@@ -257,6 +259,10 @@ bool TabSpecificContentSettings::IsContentBlocked(
return false;
}
+bool TabSpecificContentSettings::IsSubresourceBlocked() const {
+ return subresource_filter_enabled_;
+}
+
bool TabSpecificContentSettings::IsBlockageIndicated(
ContentSettingsType content_type) const {
const auto& it = content_settings_status_.find(content_type);
@@ -265,11 +271,19 @@ bool TabSpecificContentSettings::IsBlockageIndicated(
return false;
}
+bool TabSpecificContentSettings::IsSubresourceBlockageIndicated() const {
+ return subresource_filter_blockage_indicated_;
+}
+
void TabSpecificContentSettings::SetBlockageHasBeenIndicated(
ContentSettingsType content_type) {
content_settings_status_[content_type].blockage_indicated_to_user = true;
}
+void TabSpecificContentSettings::SetSubresourceBlockageIndicated() {
+ subresource_filter_blockage_indicated_ = true;
+}
+
bool TabSpecificContentSettings::IsContentAllowed(
ContentSettingsType content_type) const {
// This method currently only returns meaningful values for the content type
@@ -690,6 +704,10 @@ void TabSpecificContentSettings::SetPopupsBlocked(bool blocked) {
content::NotificationService::NoDetails());
}
+void TabSpecificContentSettings::SetSubresourceBlocked(bool enabled) {
+ subresource_filter_enabled_ = enabled;
+}
+
void TabSpecificContentSettings::SetPepperBrokerAllowed(bool allowed) {
if (allowed) {
OnContentAllowed(CONTENT_SETTINGS_TYPE_PPAPI_BROKER);

Powered by Google App Engine
This is Rietveld 408576698