Changeset 223577 in webkit


Ignore:
Timestamp:
Oct 17, 2017 2:19:38 PM (6 years ago)
Author:
commit-queue@webkit.org
Message:

Add preliminary support for fetch event
https://bugs.webkit.org/show_bug.cgi?id=178171

Unreviewed.

Patch by Youenn Fablet <youenn@apple.com> on 2017-10-17

  • workers/service/FetchEvent.cpp:

(WebCore::FetchEvent::promiseIsSettled): build fix by removing unnecessary captured this at the moment.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r223576 r223577  
     12017-10-17  Youenn Fablet  <youenn@apple.com>
     2
     3        Add preliminary support for fetch event
     4        https://bugs.webkit.org/show_bug.cgi?id=178171
     5
     6        Unreviewed.
     7
     8        * workers/service/FetchEvent.cpp:
     9        (WebCore::FetchEvent::promiseIsSettled): build fix by removing unnecessary captured this at the moment.
     10
    1112017-10-17  Myles C. Maxfield  <mmaxfield@apple.com>
    212
  • trunk/Source/WebCore/workers/service/FetchEvent.cpp

    r223562 r223577  
    134134
    135135    auto body = m_response->consumeBody();
    136     WTF::switchOn(body, [this] (Ref<FormData>&) {
     136    WTF::switchOn(body, [] (Ref<FormData>&) {
    137137        // FIXME: Support FormData response bodies.
    138138    }, [this] (Ref<SharedBuffer>& buffer) {
Note: See TracChangeset for help on using the changeset viewer.