Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Have equalIgnoringASCIICase() take in an ASCIILiteral instead of a co…
…nst char* https://bugs.webkit.org/show_bug.cgi?id=239802 Reviewed by Darin Adler. Have equalIgnoringASCIICase() take in an ASCIILiteral instead of a const char*, as we are encouraging developers to use ""_s for string literals. * Tools/TestWebKitAPI/Tests/WTF/StringImpl.cpp: (TestWebKitAPI::TEST): * Tools/TestWebKitAPI/Tests/WTF/StringView.cpp: (TestWebKitAPI::TEST): * Source/WebKitLegacy/mac/WebCoreSupport/WebFrameLoaderClient.mm: (parameterValue): (WebFrameLoaderClient::createPlugin): * Source/WTF/wtf/text/AtomString.h: (WTF::equalIgnoringASCIICase): * Source/WTF/wtf/text/StringImpl.h: (WTF::equalIgnoringASCIICase): * Source/WTF/wtf/text/StringView.h: (WTF::equalIgnoringASCIICase): * Source/WTF/wtf/text/WTFString.h: (WTF::equalIgnoringASCIICase): * Source/WTF/wtf/unix/LanguageUnix.cpp: (WTF::platformLanguage): * Source/WebCore/Modules/applepay/PaymentCoordinator.cpp: (WebCore::PaymentCoordinator::validatedPaymentNetwork const): * Source/WebCore/accessibility/AccessibilityNodeObject.cpp: (WebCore::siblingWithAriaRole): (WebCore::AccessibilityNodeObject::menuElementForMenuButton const): (WebCore::AccessibilityNodeObject::menuItemElementForMenu const): * Source/WebCore/accessibility/AccessibilityObject.cpp: (WebCore::AccessibilityObject::popupValue const): * Source/WebCore/css/MediaQueryEvaluator.cpp: (WebCore::MediaQueryEvaluator::mediaTypeMatchSpecific const): * Source/WebCore/css/MediaQueryEvaluator.h: * Source/WebCore/dom/Document.cpp: (WebCore::messageSourceForWTFLogChannel): * Source/WebCore/dom/SecurityContext.cpp: (WebCore::SecurityContext::isSupportedSandboxPolicy): * Source/WebCore/html/HiddenInputType.cpp: (WebCore::HiddenInputType::appendFormData const): * Source/WebCore/html/LinkRelAttribute.cpp: (WebCore::LinkRelAttribute::isSupported): * Source/WebCore/html/canvas/WebGL2RenderingContext.cpp: (WebCore::WebGL2RenderingContext::getExtension): * Source/WebCore/html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::getExtension): * Source/WebCore/html/canvas/WebGLRenderingContextBase.cpp: (WebCore::WebGLRenderingContextBase::extensionIsEnabled): * Source/WebCore/page/FrameTree.cpp: (WebCore::isBlankTargetFrameName): (WebCore::isParentTargetFrameName): (WebCore::isSelfTargetFrameName): (WebCore::isTopTargetFrameName): * Source/WebCore/platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm: (WebCore::keySystemIsSupported): * Source/WebCore/platform/graphics/cocoa/FontCacheCoreText.cpp: (WebCore::FontCache::similarFont): (WebCore::FontCache::platformAlternateFamilyName): * Source/WebCore/platform/graphics/freetype/SimpleFontDataFreeType.cpp: (WebCore::Font::platformInit): * Source/WebCore/platform/graphics/gstreamer/GStreamerCommon.cpp: (WebCore::isThunderRanked): * Source/WebCore/platform/network/CacheValidation.cpp: * Source/WebCore/platform/network/HTTPParsers.cpp: (WebCore::normalizeHTTPMethod): (WebCore::isSafeMethod): * Source/WebCore/platform/network/curl/CurlMultipartHandle.cpp: (WebCore::CurlMultipartHandle::extractBoundary): * Source/WebCore/platform/playstation/MIMETypeRegistryPlayStation.cpp: (WebCore::MIMETypeRegistry::mimeTypeForExtension): (WebCore::MIMETypeRegistry::preferredExtensionForMIMEType): * Source/WebCore/style/ElementRuleCollector.h: (WebCore::Style::ElementRuleCollector::setMedium): * Source/WebCore/svg/SVGToOTFFontConversion.cpp: (WebCore::SVGToOTFFontConverter::appendArabicReplacementSubtable): (WebCore::SVGToOTFFontConverter::appendGSUBTable): * Source/WebCore/xml/XMLHttpRequest.cpp: (WebCore::replaceCharsetInMediaTypeIfNeeded): Canonical link: https://commits.webkit.org/250075@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@293561 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
35 changed files
with
149 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.