Title: [133300] trunk/Source/WebKit2
Revision
133300
Author
rak...@webkit.org
Date
2012-11-02 08:22:40 -0700 (Fri, 02 Nov 2012)

Log Message

REGRESSION (r133075): plugins/plugin-_javascript_-access.html is failing
https://bugs.webkit.org/show_bug.cgi?id=101045

Patch by Sudarsana Nagineni <sudarsana.nagin...@intel.com> on 2012-11-02
Reviewed by Kenneth Rohde Christiansen.

Encode the plugin filename in ArgumentCoder<PluginInfo> so that
plugin.filename returns the filename instead of name of the plugin.

* Shared/WebCoreArgumentCoders.cpp:
(CoreIPC::::encode):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (133299 => 133300)


--- trunk/Source/WebKit2/ChangeLog	2012-11-02 15:16:04 UTC (rev 133299)
+++ trunk/Source/WebKit2/ChangeLog	2012-11-02 15:22:40 UTC (rev 133300)
@@ -1,3 +1,16 @@
+2012-11-02  Sudarsana Nagineni  <sudarsana.nagin...@intel.com>
+
+        REGRESSION (r133075): plugins/plugin-_javascript_-access.html is failing
+        https://bugs.webkit.org/show_bug.cgi?id=101045
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Encode the plugin filename in ArgumentCoder<PluginInfo> so that
+        plugin.filename returns the filename instead of name of the plugin.
+
+        * Shared/WebCoreArgumentCoders.cpp:
+        (CoreIPC::::encode):
+
 2012-11-01  Yael Aharon  <yael.aha...@intel.com>
 
         [EFL][WK2][AC] Wrong translation of mouse events

Modified: trunk/Source/WebKit2/Shared/WebCoreArgumentCoders.cpp (133299 => 133300)


--- trunk/Source/WebKit2/Shared/WebCoreArgumentCoders.cpp	2012-11-02 15:16:04 UTC (rev 133299)
+++ trunk/Source/WebKit2/Shared/WebCoreArgumentCoders.cpp	2012-11-02 15:22:40 UTC (rev 133300)
@@ -164,7 +164,7 @@
 
 void ArgumentCoder<PluginInfo>::encode(ArgumentEncoder& encoder, const PluginInfo& pluginInfo)
 {
-    encoder << pluginInfo.name << pluginInfo.name << pluginInfo.desc << pluginInfo.mimes;
+    encoder << pluginInfo.name << pluginInfo.file << pluginInfo.desc << pluginInfo.mimes;
 }
     
 bool ArgumentCoder<PluginInfo>::decode(ArgumentDecoder* decoder, PluginInfo& pluginInfo)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to