Title: [225127] trunk/Source/WebCore
Revision
225127
Author
commit-qu...@webkit.org
Date
2017-11-23 21:39:57 -0800 (Thu, 23 Nov 2017)

Log Message

[Win] PasteboardWin.cpp(653): error C2039: 'containsOnlyASCII': is not a member of 'WTF::String'
https://bugs.webkit.org/show_bug.cgi?id=179991

Unreviewed build fix.

No new tests (No behaviour change).

Patch by Fujii Hironori <hironori.fu...@sony.com> on 2017-11-23

* platform/win/PasteboardWin.cpp:
(WebCore::Pasteboard::writeURLToDataObject): Renamed containsOnlyASCII() to isAllASCII().

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (225126 => 225127)


--- trunk/Source/WebCore/ChangeLog	2017-11-24 01:25:56 UTC (rev 225126)
+++ trunk/Source/WebCore/ChangeLog	2017-11-24 05:39:57 UTC (rev 225127)
@@ -1,3 +1,15 @@
+2017-11-23  Fujii Hironori  <hironori.fu...@sony.com>
+
+        [Win] PasteboardWin.cpp(653): error C2039: 'containsOnlyASCII': is not a member of 'WTF::String'
+        https://bugs.webkit.org/show_bug.cgi?id=179991
+
+        Unreviewed build fix.
+
+        No new tests (No behaviour change).
+
+        * platform/win/PasteboardWin.cpp:
+        (WebCore::Pasteboard::writeURLToDataObject): Renamed containsOnlyASCII() to isAllASCII().
+
 2017-11-23  Carlos Alberto Lopez Perez  <clo...@igalia.com>
 
         [GTK] [Debug] Fix build after r225117.

Modified: trunk/Source/WebCore/platform/win/PasteboardWin.cpp (225126 => 225127)


--- trunk/Source/WebCore/platform/win/PasteboardWin.cpp	2017-11-24 01:25:56 UTC (rev 225126)
+++ trunk/Source/WebCore/platform/win/PasteboardWin.cpp	2017-11-24 05:39:57 UTC (rev 225127)
@@ -650,7 +650,7 @@
     WebCore::writeURL(m_writableDataObject.get(), kurl, titleStr, true, true);
 
     String url = ""
-    ASSERT(url.containsOnlyASCII()); // URL::string() is URL encoded.
+    ASSERT(url.isAllASCII()); // URL::string() is URL encoded.
 
     String fsPath = filesystemPathFromUrlOrTitle(url, titleStr, L".URL", true);
     String contentString("[InternetShortcut]\r\nURL=" + url + "\r\n");
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to