summaryrefslogtreecommitdiffstats
path: root/chrome/browser/renderer_host/render_view_host.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/renderer_host/render_view_host.cc')
-rw-r--r--chrome/browser/renderer_host/render_view_host.cc10
1 files changed, 4 insertions, 6 deletions
diff --git a/chrome/browser/renderer_host/render_view_host.cc b/chrome/browser/renderer_host/render_view_host.cc
index a03f4e4..b957d28 100644
--- a/chrome/browser/renderer_host/render_view_host.cc
+++ b/chrome/browser/renderer_host/render_view_host.cc
@@ -1536,12 +1536,11 @@ void RenderViewHost::OnMissingPluginStatus(int status) {
integration_delegate->OnMissingPluginStatus(status);
}
-void RenderViewHost::OnNonSandboxedPluginBlocked(const std::string& plugin,
- const string16& name) {
+void RenderViewHost::OnNonSandboxedPluginBlocked(const string16& name) {
RenderViewHostDelegate::BlockedPlugin* blocked_plugin_delegate =
delegate_->GetBlockedPluginDelegate();
if (blocked_plugin_delegate) {
- blocked_plugin_delegate->OnNonSandboxedPluginBlocked(plugin, name);
+ blocked_plugin_delegate->OnNonSandboxedPluginBlocked(name);
}
}
@@ -1997,12 +1996,11 @@ void RenderViewHost::OnPageTranslated(int32 page_id,
translated_lang, error_type);
}
-void RenderViewHost::OnContentBlocked(ContentSettingsType type,
- const std::string& resource_identifier) {
+void RenderViewHost::OnContentBlocked(ContentSettingsType type) {
RenderViewHostDelegate::ContentSettings* content_settings_delegate =
delegate_->GetContentSettingsDelegate();
if (content_settings_delegate)
- content_settings_delegate->OnContentBlocked(type, resource_identifier);
+ content_settings_delegate->OnContentBlocked(type);
}
void RenderViewHost::OnAppCacheAccessed(const GURL& manifest_url,