| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 67a8da0997c29a1de1f205d0d2e24d19d198170e..f1667ebc9ea3aac3a354a325e9aca7dac78fb89c 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -264,6 +264,11 @@ void ChromeContentBrowserClient::BrowserRenderProcessHostCreated(
|
|
|
| host->Send(new ChromeViewMsg_SetIsIncognitoProcess(
|
| profile->IsOffTheRecord()));
|
| +
|
| + ContentSettingsForOneType settings;
|
| + HostContentSettingsMap* map = profile->GetHostContentSettingsMap();
|
| + map->GetSettingsForOneType(CONTENT_SETTINGS_TYPE_IMAGES, "", &settings);
|
| + host->Send(new ChromeViewMsg_SetImageSettingRules(settings));
|
| }
|
|
|
| void ChromeContentBrowserClient::PluginProcessHostCreated(
|
|
|