Changeset 215115 in webkit
- Timestamp:
- Apr 7, 2017, 12:57:03 PM (8 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r215104 r215115 1 2017-04-07 John Wilander <wilander@apple.com> 2 3 Follow-up fix for Soup platform. 4 https://bugs.webkit.org/show_bug.cgi?id=170322 5 6 Unreviewed build fix. Error introduced by me in 7 https://trac.webkit.org/changeset/215104/webkit. 8 9 No new tests. 10 11 * platform/network/soup/SocketStreamHandleImpl.h: 12 Move parameter change to the right 13 SocketStreamHandleImpl::create() function. 14 1 15 2017-04-07 John Wilander <wilander@apple.com> 2 16 -
trunk/Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h
r215104 r215115 49 49 class SocketStreamHandleImpl final : public SocketStreamHandle { 50 50 public: 51 static Ref<SocketStreamHandleImpl> create(const URL&, SocketStreamHandleClient&, SessionID, const String& );52 static Ref<SocketStreamHandle> create(GSocketConnection*, SocketStreamHandleClient& , SourceApplicationAuditToken&&);51 static Ref<SocketStreamHandleImpl> create(const URL&, SocketStreamHandleClient&, SessionID, const String&, SourceApplicationAuditToken&&); 52 static Ref<SocketStreamHandle> create(GSocketConnection*, SocketStreamHandleClient&); 53 53 54 54 virtual ~SocketStreamHandleImpl();
Note:
See TracChangeset
for help on using the changeset viewer.