From fa775cf16c88fbf3176df7724b2009d62869c361 Mon Sep 17 00:00:00 2001 From: "marja@chromium.org" Date: Wed, 9 Nov 2011 10:02:45 +0000 Subject: Take script URLs into account when applying script content settings. Transmit script content settings to the renderer. Use the script URL as the secondary URL for the content setting rules. BUG=90840 TEST=ChromeRenderViewTest.ContentSettings(Allow|Block)Scripts Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=109005 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=109036 Review URL: http://codereview.chromium.org/8409006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109213 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/content_settings.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'chrome/common/content_settings.h') diff --git a/chrome/common/content_settings.h b/chrome/common/content_settings.h index ec500b6..cff4102 100644 --- a/chrome/common/content_settings.h +++ b/chrome/common/content_settings.h @@ -76,4 +76,11 @@ struct SettingInfo { } // namespace content_settings +struct RendererContentSettingRules { + RendererContentSettingRules(); + ~RendererContentSettingRules(); + ContentSettingsForOneType image_rules; + ContentSettingsForOneType script_rules; +}; + #endif // CHROME_COMMON_CONTENT_SETTINGS_H_ -- cgit v1.1