Skip to content

Commit

Permalink
Merged r235908 - Unreviewed, attempt to fix Apple builds after r235903
Browse files Browse the repository at this point in the history
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):
  • Loading branch information
aperezdc committed Oct 28, 2018
1 parent 695ad78 commit 76a2562
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Source/WebKit/ChangeLog
@@ -1,3 +1,13 @@
2018-09-11 Michael Catanzaro <mcatanzaro@igalia.com>

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 <mcatanzaro@igalia.com>

Unreviewed, fix build after r235903
Expand Down
2 changes: 1 addition & 1 deletion Source/WebKit/UIProcess/WebPageProxy.cpp
Expand Up @@ -502,7 +502,7 @@ WebPageProxy::~WebPageProxy()
// 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;
Expand Down

0 comments on commit 76a2562

Please sign in to comment.