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

Unified Diff: third_party/WebKit/Source/web/WebFrameWidgetBase.h

Issue 2278283002: Implement Mac Pop-up Dictionary for OOPIF. (Closed)
Patch Set: Moved ownership of TextInputClientObserver to RenderWidget Created 4 years, 3 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/web/WebFrameWidgetBase.h
diff --git a/third_party/WebKit/Source/web/WebFrameWidgetBase.h b/third_party/WebKit/Source/web/WebFrameWidgetBase.h
index e71ac932cd98197433eb25e0ecd953aaa40f6940..04bf4066240414b63c52f4be27f88e0526dc42d4 100644
--- a/third_party/WebKit/Source/web/WebFrameWidgetBase.h
+++ b/third_party/WebKit/Source/web/WebFrameWidgetBase.h
@@ -13,6 +13,8 @@ namespace blink {
class CompositorAnimationTimeline;
class CompositorProxyClient;
class GraphicsLayer;
+class HitTestResult;
+struct WebPoint;
class WebFrameWidgetBase : public WebFrameWidget {
public:
@@ -28,6 +30,8 @@ public:
// Attaches/detaches a CompositorAnimationTimeline to the layer tree.
virtual void attachCompositorAnimationTimeline(CompositorAnimationTimeline*) = 0;
virtual void detachCompositorAnimationTimeline(CompositorAnimationTimeline*) = 0;
+
+ virtual HitTestResult coreHitTestResultAt(const WebPoint&) = 0;
};
DEFINE_TYPE_CASTS(WebFrameWidgetBase, WebFrameWidget, widget, true, true);

Powered by Google App Engine
This is Rietveld 408576698