Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: cd543806fd1f2c16ce41fef6e2bae593079ad644
https://github.com/WebKit/WebKit/commit/cd543806fd1f2c16ce41fef6e2bae593079ad644
Author: David Kilzer <[email protected]>
Date: 2026-09-08 (Tue, 08 Sep 2026)
Changed paths:
M Source/WebKit/Shared/WebEventConversion.cpp
Log Message:
-----------
REGRESSION (320694@main): WebEventConversion.cpp fails to build: use of
undeclared identifier 'DoublePoint'
<https://bugs.webkit.org/show_bug.cgi?id=323730>
<rdar://186982334>
Unreviewed build fix.
Qualify the `DoublePoint` references in the `WebKit2PlatformTouchPoint`
constructor as `WebCore::DoublePoint`, matching the qualified use
already present elsewhere in the file.
`WebEventConversion.cpp` is in namespace `WebKit` and has no file-scope
`using namespace WebCore;`, so unqualified `DoublePoint` does not
resolve. The references compiled only because a sibling source file
earlier in the same unified-source bundle contributed a file-scope
`using namespace WebCore;` that carried through the translation unit.
320694@main regrouped the unified-source bundles, moving this file into
a bundle where no preceding sibling supplies that directive and
exposing the unqualified references, which have been present since
298383@main.
No new tests since no change in behavior.
* Source/WebKit/Shared/WebEventConversion.cpp:
(WebKit::WebKit2PlatformTouchPoint::WebKit2PlatformTouchPoint):
Canonical link: https://commits.webkit.org/320708@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications