From: wilander@apple.com Date: Fri, 7 Apr 2017 19:57:03 +0000 (+0000) Subject: Follow-up fix for Soup platform. X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=28402483aa54cf3ed441a1ddafe5a84ef1136cb4 Follow-up fix for Soup platform. https://bugs.webkit.org/show_bug.cgi?id=170322 Unreviewed build fix. Error introduced by me in https://trac.webkit.org/changeset/215104/webkit. No new tests. * platform/network/soup/SocketStreamHandleImpl.h: Move parameter change to the right SocketStreamHandleImpl::create() function. git-svn-id: https://svn.webkit.org/repository/webkit/trunk@215115 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog index 5755268..912a7f3 100644 --- a/Source/WebCore/ChangeLog +++ b/Source/WebCore/ChangeLog @@ -1,5 +1,19 @@ 2017-04-07 John Wilander + Follow-up fix for Soup platform. + https://bugs.webkit.org/show_bug.cgi?id=170322 + + Unreviewed build fix. Error introduced by me in + https://trac.webkit.org/changeset/215104/webkit. + + No new tests. + + * platform/network/soup/SocketStreamHandleImpl.h: + Move parameter change to the right + SocketStreamHandleImpl::create() function. + +2017-04-07 John Wilander + WebSocket streams should have network usage attributed to correct process https://bugs.webkit.org/show_bug.cgi?id=170322 diff --git a/Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h b/Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h index c2ffca9..54ed100 100644 --- a/Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h +++ b/Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h @@ -48,8 +48,8 @@ class SocketStreamHandleClient; class SocketStreamHandleImpl final : public SocketStreamHandle { public: - static Ref create(const URL&, SocketStreamHandleClient&, SessionID, const String&); - static Ref create(GSocketConnection*, SocketStreamHandleClient&, SourceApplicationAuditToken&&); + static Ref create(const URL&, SocketStreamHandleClient&, SessionID, const String&, SourceApplicationAuditToken&&); + static Ref create(GSocketConnection*, SocketStreamHandleClient&); virtual ~SocketStreamHandleImpl();