| Index: chrome/browser/plugins/plugin_info_message_filter.cc
|
| diff --git a/chrome/browser/plugins/plugin_info_message_filter.cc b/chrome/browser/plugins/plugin_info_message_filter.cc
|
| index 62589126713525f30698b657487470c657d42c07..46b183240a3646e56e5435e27b9dcb62b2508b0e 100644
|
| --- a/chrome/browser/plugins/plugin_info_message_filter.cc
|
| +++ b/chrome/browser/plugins/plugin_info_message_filter.cc
|
| @@ -11,6 +11,7 @@
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "base/thread_task_runner_handle.h"
|
| #include "chrome/browser/browser_process.h"
|
| +#include "chrome/browser/content_settings/host_content_settings_map_factory.h"
|
| #include "chrome/browser/plugins/chrome_plugin_service_filter.h"
|
| #include "chrome/browser/plugins/plugin_finder.h"
|
| #include "chrome/browser/plugins/plugin_metadata.h"
|
| @@ -200,7 +201,8 @@ PluginInfoMessageFilter::Context::Context(int render_process_id,
|
| #if defined(ENABLE_EXTENSIONS)
|
| extension_registry_(extensions::ExtensionRegistry::Get(profile)),
|
| #endif
|
| - host_content_settings_map_(profile->GetHostContentSettingsMap()),
|
| + host_content_settings_map_(HostContentSettingsMapFactory::GetForProfile(
|
| + profile)),
|
| plugin_prefs_(PluginPrefs::GetForProfile(profile)) {
|
| allow_outdated_plugins_.Init(prefs::kPluginsAllowOutdated,
|
| profile->GetPrefs());
|
|
|