Title: [118619] trunk/Source/WebCore
Revision
118619
Author
[email protected]
Date
2012-05-26 18:16:25 -0700 (Sat, 26 May 2012)

Log Message

Fix the build when NETSCAPE_PLUGIN_API is disabled by marking a
parameter as unused.

* plugins/PluginData.cpp:
(WebCore::PluginData::initPlugins):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (118618 => 118619)


--- trunk/Source/WebCore/ChangeLog	2012-05-27 00:46:11 UTC (rev 118618)
+++ trunk/Source/WebCore/ChangeLog	2012-05-27 01:16:25 UTC (rev 118619)
@@ -1,3 +1,11 @@
+2012-05-26  Andy Estes  <[email protected]>
+
+        Fix the build when NETSCAPE_PLUGIN_API is disabled by marking a
+        parameter as unused.
+
+        * plugins/PluginData.cpp:
+        (WebCore::PluginData::initPlugins):
+
 2012-05-26  Nate Chapin  <[email protected]>
 
         Cancel CachedResource loads when the last client is removed.

Modified: trunk/Source/WebCore/plugins/PluginData.cpp (118618 => 118619)


--- trunk/Source/WebCore/plugins/PluginData.cpp	2012-05-27 00:46:11 UTC (rev 118618)
+++ trunk/Source/WebCore/plugins/PluginData.cpp	2012-05-27 01:16:25 UTC (rev 118619)
@@ -78,6 +78,8 @@
     ASSERT(m_plugins.isEmpty());
     
     platformStrategies()->pluginStrategy()->getPluginInfo(page, m_plugins);
+#else
+    UNUSED_PARAM(page);
 #endif
 }
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to