Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 588e0f8ae8a0b21c73c10ad185fd125624b06d4c
https://github.com/WebKit/WebKit/commit/588e0f8ae8a0b21c73c10ad185fd125624b06d4c
Author: David Kilzer <[email protected]>
Date: 2026-08-24 (Mon, 24 Aug 2026)
Changed paths:
M Source/WebCore/platform/graphics/iso/ISOOriginalFormatBox.h
Log Message:
-----------
REGRESSION (319410@main): WebCore::ISOOriginalFormatBox::parse() is no longer
exported from WebCore
<https://bugs.webkit.org/show_bug.cgi?id=322380>
<rdar://185663612>
Unreviewed build fix.
Add `WEBCORE_EXPORT` to `ISOOriginalFormatBox::parse()`. 319410@main
changed the ISO box `parse()` methods to take `const ByteView&` and, in
that same change, dropped the class-level `WEBCORE_EXPORT` from
`ISOOriginalFormatBox`, re-adding it only to the constructor and
destructor. The `parse()` override was left un-exported, so code
outside WebCore that links against the framework and calls it fails
with an undefined symbol. The sibling ISO box classes stay reachable
through their own class-level or per-member `WEBCORE_EXPORT`, so
`ISOOriginalFormatBox` was the only one affected.
No new tests since this change is not directly testable.
* Source/WebCore/platform/graphics/iso/ISOOriginalFormatBox.h:
(WebCore::ISOOriginalFormatBox::parse):
Canonical link: https://commits.webkit.org/319691@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications