Index: third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h |
diff --git a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h |
index 149353872b006a9e6cc7e171868ba15cae93cfb3..e3be81f479eb17ae9e1cbf83753d1bfc631899d2 100644 |
--- a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h |
+++ b/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.h |
@@ -108,6 +108,7 @@ public: |
virtual unsigned hitRegionsCount() const { return 0; } |
virtual void setFont(const String&) { } |
virtual void styleDidChange(const ComputedStyle* oldStyle, const ComputedStyle& newStyle) { } |
+ virtual std::pair<Element*, String> getControlAndIdIfHitRegionExists(const LayoutPoint& location) { ASSERT_NOT_REACHED(); return std::make_pair(nullptr, String()); } |
// WebGL-specific interface |
virtual bool is3d() const { return false; } |