+2013-08-26 Santosh Mahto <santosh.ma@samsung.com>
+
+ Fixing compilation warning "unused parameter" in WebPageProxy.cpp
+ https://bugs.webkit.org/show_bug.cgi?id=120205
+
+ Reviewed by Anders Carlsson.
+
+ * UIProcess/WebPageProxy.cpp:
+ (WebKit::WebPageProxy::findPlugin):
+ (WebKit::WebPageProxy::didBlockInsecurePluginVersion):
+ Added UNUSED_PARAM to avoid warning.
+
2013-08-23 Andy Estes <aestes@apple.com>
Fix issues found by the Clang Static Analyzer
#else
UNUSED_PARAM(frameURLString);
UNUSED_PARAM(pageURLString);
+ UNUSED_PARAM(unavailabilityDescription);
#endif
PluginProcessSandboxPolicy pluginProcessSandboxPolicy = PluginProcessSandboxPolicyNormal;
PluginModuleInfo plugin = m_process->context()->pluginInfoStore().findPlugin(newMimeType, KURL(KURL(), pluginURLString));
pluginInformation = createPluginInformationDictionary(plugin, frameURLString, mimeType, pageURLString, String(), String(), replacementObscured);
#else
+ UNUSED_PARAM(mimeType);
UNUSED_PARAM(pluginURLString);
+ UNUSED_PARAM(frameURLString);
+ UNUSED_PARAM(pageURLString);
+ UNUSED_PARAM(replacementObscured);
#endif
m_loaderClient.didBlockInsecurePluginVersion(this, pluginInformation.get());