| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/content_settings/content_settings_internal_extension_pr
ovider.h" | 5 #include "chrome/browser/content_settings/content_settings_internal_extension_pr
ovider.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "chrome/browser/pdf/pdf_extension_util.h" | 10 #include "chrome/browser/pdf/pdf_extension_util.h" |
| 11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "chrome/common/chrome_content_client.h" | 12 #include "chrome/common/chrome_content_client.h" |
| 13 #include "components/content_settings/core/browser/content_settings_info.h" |
| 14 #include "components/content_settings/core/browser/content_settings_registry.h" |
| 13 #include "components/content_settings/core/browser/content_settings_rule.h" | 15 #include "components/content_settings/core/browser/content_settings_rule.h" |
| 14 #include "components/content_settings/core/common/content_settings.h" | 16 #include "components/content_settings/core/common/content_settings.h" |
| 15 #include "components/content_settings/core/common/content_settings_pattern.h" | 17 #include "components/content_settings/core/common/content_settings_pattern.h" |
| 16 #include "content/public/browser/notification_details.h" | 18 #include "content/public/browser/notification_details.h" |
| 17 #include "content/public/browser/notification_service.h" | 19 #include "content/public/browser/notification_service.h" |
| 18 #include "extensions/browser/extension_host.h" | 20 #include "extensions/browser/extension_host.h" |
| 19 #include "extensions/browser/extension_registry.h" | 21 #include "extensions/browser/extension_registry.h" |
| 20 #include "extensions/browser/notification_types.h" | 22 #include "extensions/browser/notification_types.h" |
| 21 #include "extensions/common/constants.h" | 23 #include "extensions/common/constants.h" |
| 22 #include "extensions/common/extension.h" | 24 #include "extensions/common/extension.h" |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 ContentSettingsPattern primary_pattern = pattern_builder->Build(); | 206 ContentSettingsPattern primary_pattern = pattern_builder->Build(); |
| 205 ContentSettingsPattern secondary_pattern = ContentSettingsPattern::Wildcard(); | 207 ContentSettingsPattern secondary_pattern = ContentSettingsPattern::Wildcard(); |
| 206 { | 208 { |
| 207 base::AutoLock lock(lock_); | 209 base::AutoLock lock(lock_); |
| 208 if (setting == CONTENT_SETTING_DEFAULT) { | 210 if (setting == CONTENT_SETTING_DEFAULT) { |
| 209 value_map_.DeleteValue(primary_pattern, | 211 value_map_.DeleteValue(primary_pattern, |
| 210 secondary_pattern, | 212 secondary_pattern, |
| 211 CONTENT_SETTINGS_TYPE_PLUGINS, | 213 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 212 resource); | 214 resource); |
| 213 } else { | 215 } else { |
| 216 DCHECK(content_settings::ContentSettingsRegistry::GetInstance() |
| 217 ->Get(CONTENT_SETTINGS_TYPE_PLUGINS) |
| 218 ->IsSettingValid(setting)); |
| 214 value_map_.SetValue(primary_pattern, secondary_pattern, | 219 value_map_.SetValue(primary_pattern, secondary_pattern, |
| 215 CONTENT_SETTINGS_TYPE_PLUGINS, resource, | 220 CONTENT_SETTINGS_TYPE_PLUGINS, resource, |
| 216 new base::Value(setting)); | 221 new base::Value(setting)); |
| 217 } | 222 } |
| 218 } | 223 } |
| 219 NotifyObservers(primary_pattern, | 224 NotifyObservers(primary_pattern, |
| 220 secondary_pattern, | 225 secondary_pattern, |
| 221 CONTENT_SETTINGS_TYPE_PLUGINS, | 226 CONTENT_SETTINGS_TYPE_PLUGINS, |
| 222 resource); | 227 resource); |
| 223 } | 228 } |
| 224 | 229 |
| 225 } // namespace content_settings | 230 } // namespace content_settings |
| OLD | NEW |