Title: [164749] trunk/Source/WebKit2
Revision
164749
Author
[email protected]
Date
2014-02-26 14:20:47 -0800 (Wed, 26 Feb 2014)

Log Message

WebProcessProxy::updateProcessState() is causing duplicate symbol linker errors
https://bugs.webkit.org/show_bug.cgi?id=129390

Reviewed by Tim Horton.

Caused by r164737. WebProcessProxy::updateProcessState() is defined in a header, outside of
a class, but isn't inlined.

* UIProcess/WebProcessProxy.h:
(WebKit::WebProcessProxy::updateProcessState):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (164748 => 164749)


--- trunk/Source/WebKit2/ChangeLog	2014-02-26 22:10:33 UTC (rev 164748)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-26 22:20:47 UTC (rev 164749)
@@ -1,3 +1,16 @@
+2014-02-26  Myles C. Maxfield  <[email protected]>
+
+        WebProcessProxy::updateProcessState() is causing duplicate symbol linker errors
+        https://bugs.webkit.org/show_bug.cgi?id=129390
+
+        Reviewed by Tim Horton.
+
+        Caused by r164737. WebProcessProxy::updateProcessState() is defined in a header, outside of
+        a class, but isn't inlined.
+
+        * UIProcess/WebProcessProxy.h:
+        (WebKit::WebProcessProxy::updateProcessState):
+
 2014-02-26  Brian Burg  <[email protected]>
 
         Web Replay: route through UserInputBridge when delivering user inputs to WebCore

Modified: trunk/Source/WebKit2/UIProcess/WebProcessProxy.h (164748 => 164749)


--- trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2014-02-26 22:10:33 UTC (rev 164748)
+++ trunk/Source/WebKit2/UIProcess/WebProcessProxy.h	2014-02-26 22:20:47 UTC (rev 164749)
@@ -216,7 +216,7 @@
 };
 
 #if !PLATFORM(IOS)
-void WebProcessProxy::updateProcessState() { }
+inline void WebProcessProxy::updateProcessState() { }
 #endif
 
 } // namespace WebKit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to