Bug 304491

Summary: Use ProcessID instead of pid_t in AccessibilityRemoteToken constructor
Product: WebKit Reporter: Brandon <brandonstewart>
Component: WebCore Misc.Assignee: Brandon <brandonstewart>
Status: RESOLVED FIXED    
Severity: Normal CC: webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   

Brandon
Reported 2025-12-19 06:20:07 PST
The AccessibilityRemoteToken constructor was using pid_t directly, which is a POSIX type not available on Windows. This caused a build failure on Windows. Changed the constructor parameter type from pid_t to ProcessID, which is a cross-platform type defined in WTF that uses int on Windows and pid_t on Unix. This matches the member variable declaration which already used ProcessID.
Attachments
Radar WebKit Bug Importer
Comment 1 2025-12-19 06:20:14 PST
Brandon
Comment 2 2025-12-19 06:24:19 PST
EWS
Comment 3 2025-12-19 08:39:06 PST
Committed 304754@main (9647efa02d81): <https://commits.webkit.org/304754@main> Reviewed commits have been landed. Closing PR #55702 and removing active labels.
Note You need to log in before you can comment on or make changes to this bug.