Title: [96506] trunk/Source/WebKit2
Revision
96506
Author
[email protected]
Date
2011-10-03 09:14:43 -0700 (Mon, 03 Oct 2011)

Log Message

[UNIX] Rename NetscapePluginModule::pluginInfo to NetscapePluginModule::getPluginInfoForLoadedPlugin()
https://bugs.webkit.org/show_bug.cgi?id=69147

Reviewed by Martin Robinson.

* Shared/Plugins/Netscape/NetscapePluginModule.h:
* Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:
(WebKit::NetscapePluginModule::getPluginInfoForLoadedPlugin):
(WebKit::NetscapePluginModule::getPluginInfo):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (96505 => 96506)


--- trunk/Source/WebKit2/ChangeLog	2011-10-03 16:11:48 UTC (rev 96505)
+++ trunk/Source/WebKit2/ChangeLog	2011-10-03 16:14:43 UTC (rev 96506)
@@ -1,3 +1,15 @@
+2011-10-03  Carlos Garcia Campos  <[email protected]>
+
+        [UNIX] Rename NetscapePluginModule::pluginInfo to NetscapePluginModule::getPluginInfoForLoadedPlugin()
+        https://bugs.webkit.org/show_bug.cgi?id=69147
+
+        Reviewed by Martin Robinson.
+
+        * Shared/Plugins/Netscape/NetscapePluginModule.h:
+        * Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:
+        (WebKit::NetscapePluginModule::getPluginInfoForLoadedPlugin):
+        (WebKit::NetscapePluginModule::getPluginInfo):
+
 2011-10-03  Zeno Albisser  <[email protected]>
 
         [Qt][WebKit2][Mac] WebProcess should exit automatically when UIProcess dies.

Modified: trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h (96505 => 96506)


--- trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h	2011-10-03 16:11:48 UTC (rev 96505)
+++ trunk/Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModule.h	2011-10-03 16:14:43 UTC (rev 96506)
@@ -69,7 +69,7 @@
 #if PLUGIN_ARCHITECTURE(X11)
     void applyX11QuirksBeforeLoad();
     static void setMIMEDescription(const String& mimeDescription, PluginModuleInfo&);
-    bool pluginInfo(PluginModuleInfo&);
+    bool getPluginInfoForLoadedPlugin(PluginModuleInfo&);
 #endif
 
     bool tryGetSitesWithData(Vector<String>&);

Modified: trunk/Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp (96505 => 96506)


--- trunk/Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp	2011-10-03 16:11:48 UTC (rev 96505)
+++ trunk/Source/WebKit2/Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp	2011-10-03 16:14:43 UTC (rev 96506)
@@ -118,7 +118,7 @@
     }
 }
 
-bool NetscapePluginModule::pluginInfo(PluginModuleInfo& plugin)
+bool NetscapePluginModule::getPluginInfoForLoadedPlugin(PluginModuleInfo& plugin)
 {
     ASSERT(m_isInitialized);
 
@@ -164,7 +164,7 @@
         return false;
 
     pluginModule->incrementLoadCount();
-    bool returnValue = pluginModule->pluginInfo(plugin);
+    bool returnValue = pluginModule->getPluginInfoForLoadedPlugin(plugin);
     pluginModule->decrementLoadCount();
 
     return returnValue;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to