Title: [161053] trunk/Source/WebKit2
Revision
161053
Author
[email protected]
Date
2013-12-24 00:23:31 -0800 (Tue, 24 Dec 2013)

Log Message

32-bit Mac build fix attempt after r161045.

* WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
(WebKit::windowMap):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (161052 => 161053)


--- trunk/Source/WebKit2/ChangeLog	2013-12-24 08:11:38 UTC (rev 161052)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-24 08:23:31 UTC (rev 161053)
@@ -1,3 +1,10 @@
+2013-12-24  Ryosuke Niwa  <[email protected]>
+
+        32-bit Mac build fix attempt after r161045.
+
+        * WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
+        (WebKit::windowMap):
+
 2013-12-22  Sam Weinig  <[email protected]>
 
         [WK2] Replace usage of DEFINE_STATIC_LOCAL with NeverDestroyed

Modified: trunk/Source/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm (161052 => 161053)


--- trunk/Source/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm	2013-12-24 08:11:38 UTC (rev 161052)
+++ trunk/Source/WebKit2/WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm	2013-12-24 08:23:31 UTC (rev 161053)
@@ -197,7 +197,7 @@
 
 static WindowMap& windowMap()
 {
-    static NeverDestroyed<WindowMap windowMap;
+    static NeverDestroyed<WindowMap> windowMap;
     return windowMap;
 }
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to