Title: [223610] trunk/Source/WebKit
Revision
223610
Author
[email protected]
Date
2017-10-18 09:54:36 -0700 (Wed, 18 Oct 2017)

Log Message

Unreviewed, fix build error after r223608 with some SDKs.

* StorageProcess/StorageProcess.cpp:
(WebKit::StorageProcess::ensureSWOriginStoreForSession):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (223609 => 223610)


--- trunk/Source/WebKit/ChangeLog	2017-10-18 16:20:19 UTC (rev 223609)
+++ trunk/Source/WebKit/ChangeLog	2017-10-18 16:54:36 UTC (rev 223610)
@@ -1,5 +1,12 @@
 2017-10-18  Chris Dumez  <[email protected]>
 
+        Unreviewed, fix build error after r223608 with some SDKs.
+
+        * StorageProcess/StorageProcess.cpp:
+        (WebKit::StorageProcess::ensureSWOriginStoreForSession):
+
+2017-10-18  Chris Dumez  <[email protected]>
+
         Add an efficient data structure for WebCore to query if there is a Service Worker registered for a given origin
         https://bugs.webkit.org/show_bug.cgi?id=177876
         <rdar://problem/34813129>

Modified: trunk/Source/WebKit/StorageProcess/StorageProcess.cpp (223609 => 223610)


--- trunk/Source/WebKit/StorageProcess/StorageProcess.cpp	2017-10-18 16:20:19 UTC (rev 223609)
+++ trunk/Source/WebKit/StorageProcess/StorageProcess.cpp	2017-10-18 16:54:36 UTC (rev 223610)
@@ -355,7 +355,7 @@
 
 WebSWOriginStore& StorageProcess::ensureSWOriginStoreForSession(PAL::SessionID sessionID)
 {
-    return *m_swOriginStores.ensure(sessionID, [this, sessionID] {
+    return *m_swOriginStores.ensure(sessionID, [] {
         return std::make_unique<WebSWOriginStore>();
     }).iterator->value;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to