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

Unified Diff: content/renderer/render_view_impl.h

Issue 10885004: Implement disambiguation popup (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rename IPCs, move popup size calculation to helper class Created 8 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
Index: content/renderer/render_view_impl.h
diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
index bd232382130e9b54bff75cb227f097a1a4cfa1a2..9c9f0b0af7b261af3fa5f6178a23e23bd1ba805d 100644
--- a/content/renderer/render_view_impl.h
+++ b/content/renderer/render_view_impl.h
@@ -149,6 +149,7 @@ class WebDOMMessageEvent;
class WebDataSource;
class WebDragData;
class WebGeolocationClient;
+class WebGestureEvent;
#if defined(OS_ANDROID)
class WebHitTestResult;
#endif
@@ -491,6 +492,8 @@ class RenderViewImpl : public RenderWidget,
virtual void focusPrevious();
virtual void focusedNodeChanged(const WebKit::WebNode& node);
virtual void didUpdateLayout();
+ virtual bool multipleTargetsTapped(const WebKit::WebGestureEvent&,
+ const WebKit::WebVector<WebKit::WebRect>& targetRects);
virtual void navigateBackForwardSoon(int offset);
virtual int historyBackListCount();
virtual int historyForwardListCount();
@@ -981,6 +984,7 @@ class RenderViewImpl : public RenderWidget,
#endif
void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params);
void OnRedo();
+ void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle);
void OnReloadFrame();
void OnReplace(const string16& text);
void OnResetPageEncodingToDefault();

Powered by Google App Engine
This is Rietveld 408576698