Changeset 215115 in webkit


Ignore:
Timestamp:
Apr 7, 2017, 12:57:03 PM (8 years ago)
Author:
wilander@apple.com
Message:

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.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r215104 r215115  
     12017-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
    1152017-04-07  John Wilander  <wilander@apple.com>
    216
  • trunk/Source/WebCore/platform/network/soup/SocketStreamHandleImpl.h

    r215104 r215115  
    4949class SocketStreamHandleImpl final : public SocketStreamHandle {
    5050public:
    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&);
    5353
    5454    virtual ~SocketStreamHandleImpl();
Note: See TracChangeset for help on using the changeset viewer.