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

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

Issue 1918313002: Fix build issue with change https://codereview.chromium.org/1922903002 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2704
Patch Set: Created 4 years, 8 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index a18890c1275da7b7386948272a6e18baad10a5d6..2d37e0d82bd0a80eb0e3fde9106e025140cfb974 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -191,7 +191,7 @@ TouchTargetAndDispatchResultType toTouchTargetHistogramValue(EventTarget* eventT
int result = 0;
Document* document = nullptr;
- if (const LocalDOMWindow* domWindow = eventTarget->toLocalDOMWindow()) {
+ if (const LocalDOMWindow* domWindow = eventTarget->toDOMWindow()) {
// Treat the window as a root scroller as well.
document = domWindow->document();
result += kTouchTargetHistogramRootScrollerOffset;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698