Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(757)

Unified Diff: third_party/WebKit/Source/core/input/PointerEventManager.cpp

Issue 2491703004: Replace roundedLayoutPoint with LayoutPoint (Closed)
Patch Set: Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/input/PointerEventManager.cpp
diff --git a/third_party/WebKit/Source/core/input/PointerEventManager.cpp b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
index aa42f46837b4e09bc0c4b25bce46f0f942d3b23f..8136dfde90b621c540598c3693b2fa282bf6608c 100644
--- a/third_party/WebKit/Source/core/input/PointerEventManager.cpp
+++ b/third_party/WebKit/Source/core/input/PointerEventManager.cpp
@@ -349,7 +349,7 @@ void PointerEventManager::computeTouchTargets(
HitTestRequest::HitTestRequestType hitType = HitTestRequest::TouchEvent |
HitTestRequest::ReadOnly |
HitTestRequest::Active;
- LayoutPoint pagePoint = roundedLayoutPoint(
+ LayoutPoint pagePoint = LayoutPoint(
m_frame->view()->rootFrameToContents(touchInfo.point.pos()));
HitTestResult hitTestTesult =
m_frame->eventHandler().hitTestResultAtPoint(pagePoint, hitType);

Powered by Google App Engine
This is Rietveld 408576698