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

Unified Diff: third_party/WebKit/Source/core/frame/WebViewFrameWidget.cpp

Issue 2951053005: Add Mojo API for Blink hit testing (Closed)
Patch Set: Address Rob's comments Created 3 years, 4 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 | « third_party/WebKit/Source/core/frame/WebViewFrameWidget.h ('k') | third_party/WebKit/public/web/WebNode.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/WebViewFrameWidget.cpp
diff --git a/third_party/WebKit/Source/core/frame/WebViewFrameWidget.cpp b/third_party/WebKit/Source/core/frame/WebViewFrameWidget.cpp
index 111c29a3703229550a42fae57c54276f5b79a920..472abc914c49b0239ae57a25cd18a8b9e9cc1a2d 100644
--- a/third_party/WebKit/Source/core/frame/WebViewFrameWidget.cpp
+++ b/third_party/WebKit/Source/core/frame/WebViewFrameWidget.cpp
@@ -90,6 +90,10 @@ void WebViewFrameWidget::ThemeChanged() {
return web_view_->ThemeChanged();
}
+// WebFrame* WebViewFrameWidget::HitTestFrameAt(const WebFloatPoint& point) {
+// return web_view_->HitTestFrameAt(point);
+//}
+
WebInputEventResult WebViewFrameWidget::HandleInputEvent(
const WebCoalescedInputEvent& event) {
return web_view_->HandleInputEvent(event);
@@ -241,6 +245,10 @@ CompositorAnimationHost* WebViewFrameWidget::AnimationHost() const {
return web_view_->AnimationHost();
}
+WebHitTestResult WebViewFrameWidget::HitTestResultAt(const WebPoint& point) {
+ return web_view_->HitTestResultAt(point);
+}
+
HitTestResult WebViewFrameWidget::CoreHitTestResultAt(const WebPoint& point) {
return web_view_->CoreHitTestResultAt(point);
}
« no previous file with comments | « third_party/WebKit/Source/core/frame/WebViewFrameWidget.h ('k') | third_party/WebKit/public/web/WebNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698