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

Unified Diff: third_party/WebKit/Source/modules/canvas2d/TouchHitRegion.cpp

Issue 1654653002: Canvas2d: Implement rerouting event by hit region's control. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
Index: third_party/WebKit/Source/modules/canvas2d/TouchHitRegion.cpp
diff --git a/third_party/WebKit/Source/modules/canvas2d/TouchHitRegion.cpp b/third_party/WebKit/Source/modules/canvas2d/TouchHitRegion.cpp
index 2b5ccf7f8a9f9ef7dfb48121c17d0c00408369bc..f0a478cda1e40373155b4f5ab7213c5bbef34137 100644
--- a/third_party/WebKit/Source/modules/canvas2d/TouchHitRegion.cpp
+++ b/third_party/WebKit/Source/modules/canvas2d/TouchHitRegion.cpp
@@ -5,17 +5,12 @@
#include "modules/canvas2d/TouchHitRegion.h"
#include "core/dom/Touch.h"
-#include "core/html/HTMLCanvasElement.h"
namespace blink {
String TouchHitRegion::region(Touch& touch)
{
- if (!touch.target() || !isHTMLCanvasElement(touch.target()->toNode()))
- return String();
-
- HTMLCanvasElement* canvas = toHTMLCanvasElement(touch.target()->toNode());
- return regionIdFromAbsoluteLocation(*canvas, touch.absoluteLocation());
+ return touch.region();
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698