Title: [288805] trunk/Source/WTF
Revision
288805
Author
[email protected]
Date
2022-01-30 20:19:33 -0800 (Sun, 30 Jan 2022)

Log Message

[WinCairo] 'fileSystemRepresentation' identifier not found in URL.cpp
https://bugs.webkit.org/show_bug.cgi?id=235875

Unreviewed build fix.

Add missing header include.


* wtf/URL.cpp:
(WTF::URL::fileSystemPath const):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (288804 => 288805)


--- trunk/Source/WTF/ChangeLog	2022-01-31 03:58:35 UTC (rev 288804)
+++ trunk/Source/WTF/ChangeLog	2022-01-31 04:19:33 UTC (rev 288805)
@@ -1,3 +1,15 @@
+2022-01-30  Diego Pino Garcia  <[email protected]>
+
+        [WinCairo] 'fileSystemRepresentation' identifier not found in URL.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=235875
+
+        Unreviewed build fix.
+
+        Add missing header include.
+
+        * wtf/URL.cpp:
+        (WTF::URL::fileSystemPath const):
+
 2022-01-30  Ryosuke Niwa  <[email protected]>
 
         Delete code for keygen element

Modified: trunk/Source/WTF/wtf/URL.cpp (288804 => 288805)


--- trunk/Source/WTF/wtf/URL.cpp	2022-01-31 03:58:35 UTC (rev 288804)
+++ trunk/Source/WTF/wtf/URL.cpp	2022-01-31 04:19:33 UTC (rev 288805)
@@ -30,6 +30,7 @@
 #include "URLParser.h"
 #include <stdio.h>
 #include <unicode/uidna.h>
+#include <wtf/FileSystem.h>
 #include <wtf/HashMap.h>
 #include <wtf/HashSet.h>
 #include <wtf/Lock.h>
@@ -246,7 +247,7 @@
 
     auto result = decodeEscapeSequencesFromParsedURL(path());
 #if PLATFORM(WIN)
-    result = fileSystemRepresentation(result);
+    result = FileSystem::fileSystemRepresentation(result);
 #endif
     return result;
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to