From 3bc4f42b8482fd75f43ab193c3a8a578b9282e83 Mon Sep 17 00:00:00 2001 From: "philn@webkit.org" Date: Fri, 18 May 2012 04:41:07 +0000 Subject: [PATCH] Unreviewed, WebKit2 GTK/Qt build fix attempt after r117516. * UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::didBlockInsecurePluginVersion): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@117539 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Source/WebKit2/ChangeLog | 7 +++++++ Source/WebKit2/UIProcess/WebPageProxy.cpp | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog index d66e04f..9b3b379 100644 --- a/Source/WebKit2/ChangeLog +++ b/Source/WebKit2/ChangeLog @@ -1,3 +1,10 @@ +2012-05-17 Philippe Normand + + Unreviewed, WebKit2 GTK/Qt build fix attempt after r117516. + + * UIProcess/WebPageProxy.cpp: + (WebKit::WebPageProxy::didBlockInsecurePluginVersion): + 2012-05-17 Anders Carlsson Plug-ins blacklist mechanism can tell clients about plug-in with null identifier diff --git a/Source/WebKit2/UIProcess/WebPageProxy.cpp b/Source/WebKit2/UIProcess/WebPageProxy.cpp index bcc748b..e11daf1 100644 --- a/Source/WebKit2/UIProcess/WebPageProxy.cpp +++ b/Source/WebKit2/UIProcess/WebPageProxy.cpp @@ -3627,9 +3627,9 @@ void WebPageProxy::didBlockInsecurePluginVersion(const String& mimeType, const S { String pluginIdentifier; String pluginVersion; + String newMimeType = mimeType; #if PLATFORM(MAC) - String newMimeType = mimeType; PluginModuleInfo plugin = m_process->context()->pluginInfoStore().findPlugin(newMimeType, KURL(KURL(), urlString)); pluginIdentifier = plugin.bundleIdentifier; -- 2.7.4