Title: [291368] trunk/Source/WebCore
Revision
291368
Author
[email protected]
Date
2022-03-16 14:35:36 -0700 (Wed, 16 Mar 2022)

Log Message

[PlayStation] Fix build break after r291341
https://bugs.webkit.org/show_bug.cgi?id=237971

Unreviewed build fix.


* platform/playstation/MIMETypeRegistryPlayStation.cpp:
(WebCore::MIMETypeRegistry::mimeTypeForExtension):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (291367 => 291368)


--- trunk/Source/WebCore/ChangeLog	2022-03-16 21:32:49 UTC (rev 291367)
+++ trunk/Source/WebCore/ChangeLog	2022-03-16 21:35:36 UTC (rev 291368)
@@ -1,3 +1,13 @@
+2022-03-16  Basuke Suzuki  <[email protected]>
+
+        [PlayStation] Fix build break after r291341
+        https://bugs.webkit.org/show_bug.cgi?id=237971
+
+        Unreviewed build fix.
+
+        * platform/playstation/MIMETypeRegistryPlayStation.cpp:
+        (WebCore::MIMETypeRegistry::mimeTypeForExtension):
+
 2022-03-16  Said Abou-Hallawa  <[email protected]>
 
         [GPU Process] Move other classes out of GraphicsContext.h

Modified: trunk/Source/WebCore/platform/playstation/MIMETypeRegistryPlayStation.cpp (291367 => 291368)


--- trunk/Source/WebCore/platform/playstation/MIMETypeRegistryPlayStation.cpp	2022-03-16 21:32:49 UTC (rev 291367)
+++ trunk/Source/WebCore/platform/playstation/MIMETypeRegistryPlayStation.cpp	2022-03-16 21:35:36 UTC (rev 291368)
@@ -57,7 +57,7 @@
     return platformMediaTypes;
 }
 
-String MIMETypeRegistry::mimeTypeForExtension(const String& extension)
+String MIMETypeRegistry::mimeTypeForExtension(StringView extension)
 {
     for (auto& entry : platformMediaTypes()) {
         if (equalIgnoringASCIICase(extension, entry.extension.characters()))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to