Changeset 223205 in webkit


Ignore:
Timestamp:
Oct 11, 2017 1:16:37 PM (7 years ago)
Author:
Chris Dumez
Message:

Unreviewed, fix build with some SDKs.

Stop capturing |this| unnecessarily in lambda.

  • Modules/entriesapi/FileSystemDirectoryEntry.cpp:

(WebCore::FileSystemDirectoryEntry::getEntry):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r223204 r223205  
     12017-10-11  Chris Dumez  <cdumez@apple.com>
     2
     3        Unreviewed, fix build with some SDKs.
     4
     5        Stop capturing |this| unnecessarily in lambda.
     6
     7        * Modules/entriesapi/FileSystemDirectoryEntry.cpp:
     8        (WebCore::FileSystemDirectoryEntry::getEntry):
     9
    1102017-10-11  Chris Dumez  <cdumez@apple.com>
    211
  • trunk/Source/WebCore/Modules/entriesapi/FileSystemDirectoryEntry.cpp

    r221540 r223205  
    5252        return;
    5353
    54     filesystem().getEntry(context, *this, path, flags, [this, pendingActivity = makePendingActivity(*this), matches = WTFMove(matches), successCallback = WTFMove(successCallback), errorCallback = WTFMove(errorCallback)](auto&& result) {
     54    filesystem().getEntry(context, *this, path, flags, [pendingActivity = makePendingActivity(*this), matches = WTFMove(matches), successCallback = WTFMove(successCallback), errorCallback = WTFMove(errorCallback)](auto&& result) {
    5555        if (result.hasException()) {
    5656            if (errorCallback)
Note: See TracChangeset for help on using the changeset viewer.