Changeset 223204 in webkit


Ignore:
Timestamp:
Oct 11, 2017 12:51:29 PM (6 years ago)
Author:
Chris Dumez
Message:

Unreviewed, fix build with some SDKs.

Stop capturing |this| unnecessarily in lambda.

  • Modules/entriesapi/DOMFileSystem.cpp:

(WebCore::DOMFileSystem::getFile):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r223198 r223204  
     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/DOMFileSystem.cpp:
     8        (WebCore::DOMFileSystem::getFile):
     9
    1102017-10-11  Daniel Bates  <dabates@apple.com>
    211
  • trunk/Source/WebCore/Modules/entriesapi/DOMFileSystem.cpp

    r223156 r223204  
    337337    auto virtualPath = fileEntry.virtualPath();
    338338    auto fullPath = evaluatePath(virtualPath);
    339     m_workQueue->dispatch([this, context = makeRef(context), fullPath = crossThreadCopy(fullPath), virtualPath = crossThreadCopy(virtualPath), completionCallback = WTFMove(completionCallback)]() mutable {
     339    m_workQueue->dispatch([context = makeRef(context), fullPath = crossThreadCopy(fullPath), virtualPath = crossThreadCopy(virtualPath), completionCallback = WTFMove(completionCallback)]() mutable {
    340340        auto validatedVirtualPath = validatePathIsExpectedType(fullPath, WTFMove(virtualPath), FileMetadata::Type::File);
    341341        callOnMainThread([context = WTFMove(context), fullPath = crossThreadCopy(fullPath), validatedVirtualPath = crossThreadCopy(validatedVirtualPath), completionCallback = WTFMove(completionCallback)]() mutable {
Note: See TracChangeset for help on using the changeset viewer.