Title: [221628] trunk/Source/WebCore
Revision
221628
Author
[email protected]
Date
2017-09-05 12:02:30 -0700 (Tue, 05 Sep 2017)

Log Message

[Win] Compile errors in pathByAppendingComponents.
https://bugs.webkit.org/show_bug.cgi?id=176387

Reviewed by Brent Fulgham.

The pathByAppendingComponents function has changed signature.

* platform/win/FileSystemWin.cpp:
(WebCore::pathByAppendingComponents):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (221627 => 221628)


--- trunk/Source/WebCore/ChangeLog	2017-09-05 18:17:29 UTC (rev 221627)
+++ trunk/Source/WebCore/ChangeLog	2017-09-05 19:02:30 UTC (rev 221628)
@@ -1,3 +1,15 @@
+2017-09-05  Per Arne Vollan  <[email protected]>
+
+        [Win] Compile errors in pathByAppendingComponents.
+        https://bugs.webkit.org/show_bug.cgi?id=176387
+
+        Reviewed by Brent Fulgham.
+
+        The pathByAppendingComponents function has changed signature.
+
+        * platform/win/FileSystemWin.cpp:
+        (WebCore::pathByAppendingComponents):
+
 2017-09-05  Simon Fraser  <[email protected]>
 
         Fix capitalization of scheduleinvalidateStyleAndLayerComposition

Modified: trunk/Source/WebCore/platform/win/FileSystemWin.cpp (221627 => 221628)


--- trunk/Source/WebCore/platform/win/FileSystemWin.cpp	2017-09-05 18:17:29 UTC (rev 221627)
+++ trunk/Source/WebCore/platform/win/FileSystemWin.cpp	2017-09-05 19:02:30 UTC (rev 221628)
@@ -265,9 +265,9 @@
 
 String pathByAppendingComponents(StringView path, const Vector<StringView>& components)
 {
-    String result = path;
+    String result = path.toString();
     for (auto& component : components)
-        result = pathByAppendingComponent(result, component);
+        result = pathByAppendingComponent(result, component.toString());
     return result;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to