Changeset 223154 in webkit


Ignore:
Timestamp:
Oct 10, 2017 4:09:43 PM (7 years ago)
Author:
Chris Dumez
Message:

Unreviewed, fix build with certain SDKs.

Stop capturing |this| unnecessarily in lambda.

  • Modules/entriesapi/DOMFileSystem.cpp:

(WebCore::DOMFileSystem::getEntry):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

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

    r223135 r223154  
    305305    auto fullPath = evaluatePath(resolvedVirtualPath);
    306306    if (fullPath == m_rootPath) {
    307         callOnMainThread([this, context = makeRef(context), completionCallback = WTFMove(completionCallback)]() mutable {
     307        callOnMainThread([context = makeRef(context), completionCallback = WTFMove(completionCallback)]() mutable {
    308308            completionCallback(Ref<FileSystemEntry> { root(context) });
    309309        });
Note: See TracChangeset for help on using the changeset viewer.