Title: [235908] trunk/Source/WebKit
Revision
235908
Author
[email protected]
Date
2018-09-11 12:19:52 -0700 (Tue, 11 Sep 2018)

Log Message

Unreviewed, attempt to fix Apple builds after r235903
https://bugs.webkit.org/show_bug.cgi?id=188872

If it really needs to be inlined, it will need to move to the header....

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::pageClient const):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (235907 => 235908)


--- trunk/Source/WebKit/ChangeLog	2018-09-11 18:56:09 UTC (rev 235907)
+++ trunk/Source/WebKit/ChangeLog	2018-09-11 19:19:52 UTC (rev 235908)
@@ -1,5 +1,15 @@
 2018-09-11  Michael Catanzaro  <[email protected]>
 
+        Unreviewed, attempt to fix Apple builds after r235903
+        https://bugs.webkit.org/show_bug.cgi?id=188872
+
+        If it really needs to be inlined, it will need to move to the header....
+
+        * UIProcess/WebPageProxy.cpp:
+        (WebKit::WebPageProxy::pageClient const):
+
+2018-09-11  Michael Catanzaro  <[email protected]>
+
         Unreviewed, fix build after r235903
         https://bugs.webkit.org/show_bug.cgi?id=188872
 

Modified: trunk/Source/WebKit/UIProcess/WebPageProxy.cpp (235907 => 235908)


--- trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-09-11 18:56:09 UTC (rev 235907)
+++ trunk/Source/WebKit/UIProcess/WebPageProxy.cpp	2018-09-11 19:19:52 UTC (rev 235908)
@@ -505,7 +505,7 @@
 // FIXME: Should return a const PageClient& and add a separate non-const
 // version of this function, but several PageClient methods will need to become
 // const for this to be possible.
-inline PageClient& WebPageProxy::pageClient() const
+PageClient& WebPageProxy::pageClient() const
 {
     ASSERT(m_pageClient);
     return *m_pageClient;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to