Title: [223154] trunk/Source/WebCore
Revision
223154
Author
cdu...@apple.com
Date
2017-10-10 16:09:43 -0700 (Tue, 10 Oct 2017)

Log Message

Unreviewed, fix build with certain SDKs.

Stop capturing |this| unnecessarily in lambda.

* Modules/entriesapi/DOMFileSystem.cpp:
(WebCore::DOMFileSystem::getEntry):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (223153 => 223154)


--- trunk/Source/WebCore/ChangeLog	2017-10-10 22:59:39 UTC (rev 223153)
+++ trunk/Source/WebCore/ChangeLog	2017-10-10 23:09:43 UTC (rev 223154)
@@ -1,3 +1,12 @@
+2017-10-10  Chris Dumez  <cdu...@apple.com>
+
+        Unreviewed, fix build with certain SDKs.
+
+        Stop capturing |this| unnecessarily in lambda.
+
+        * Modules/entriesapi/DOMFileSystem.cpp:
+        (WebCore::DOMFileSystem::getEntry):
+
 2017-10-10  Matt Lewis  <jlew...@apple.com>
 
         Unreviewed, rolling out r223148.

Modified: trunk/Source/WebCore/Modules/entriesapi/DOMFileSystem.cpp (223153 => 223154)


--- trunk/Source/WebCore/Modules/entriesapi/DOMFileSystem.cpp	2017-10-10 22:59:39 UTC (rev 223153)
+++ trunk/Source/WebCore/Modules/entriesapi/DOMFileSystem.cpp	2017-10-10 23:09:43 UTC (rev 223154)
@@ -304,7 +304,7 @@
     ASSERT(resolvedVirtualPath[0] == '/');
     auto fullPath = evaluatePath(resolvedVirtualPath);
     if (fullPath == m_rootPath) {
-        callOnMainThread([this, context = makeRef(context), completionCallback = WTFMove(completionCallback)]() mutable {
+        callOnMainThread([context = makeRef(context), completionCallback = WTFMove(completionCallback)]() mutable {
             completionCallback(Ref<FileSystemEntry> { root(context) });
         });
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to