Title: [221123] trunk/Source/WebCore
Revision
221123
Author
[email protected]
Date
2017-08-23 17:39:23 -0700 (Wed, 23 Aug 2017)

Log Message

[Cache API] Unify WebCore and WebKit error handling
https://bugs.webkit.org/show_bug.cgi?id=175902
<rdar://problem/34045933>

Unreviewed.

Patch by Youenn Fablet <[email protected]> on 2017-08-23

* Modules/cache/DOMCache.h: Fixing Windows build.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221122 => 221123)


--- trunk/Source/WebCore/ChangeLog	2017-08-24 00:31:22 UTC (rev 221122)
+++ trunk/Source/WebCore/ChangeLog	2017-08-24 00:39:23 UTC (rev 221123)
@@ -1,3 +1,13 @@
+2017-08-23  Youenn Fablet  <[email protected]>
+
+        [Cache API] Unify WebCore and WebKit error handling
+        https://bugs.webkit.org/show_bug.cgi?id=175902
+        <rdar://problem/34045933>
+
+        Unreviewed.
+
+        * Modules/cache/DOMCache.h: Fixing Windows build.
+
 2017-08-23  Ryan Haddad  <[email protected]>
 
         Unreviewed, rolling out r221109.

Modified: trunk/Source/WebCore/Modules/cache/DOMCache.h (221122 => 221123)


--- trunk/Source/WebCore/Modules/cache/DOMCache.h	2017-08-24 00:31:22 UTC (rev 221122)
+++ trunk/Source/WebCore/Modules/cache/DOMCache.h	2017-08-24 00:39:23 UTC (rev 221123)
@@ -83,7 +83,7 @@
 using RecordsOrError = Expected<Vector<Record>, Error>;
 using RecordsCallback = WTF::Function<void(RecordsOrError&&)>;
 
-using CompletionCallback = Function<void(std::optional<Error>&&)>;
+using CompletionCallback = WTF::Function<void(std::optional<Error>&&)>;
 
 } // namespace DOMCache
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to