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
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 | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Radar WebKit Bug Importer
<rdar://problem/166875779>
Brandon
Pull request: https://github.com/WebKit/WebKit/pull/55702
EWS
Committed 304754@main (9647efa02d81): <https://commits.webkit.org/304754@main>
Reviewed commits have been landed. Closing PR #55702 and removing active labels.