| Index: content/renderer/render_view_impl.h
|
| diff --git a/content/renderer/render_view_impl.h b/content/renderer/render_view_impl.h
|
| index 147267024f7481c38f09ec88488c1ad509a1f3fd..13b0753d3826dc3af0b1e5d6379719a9176ac1c9 100644
|
| --- a/content/renderer/render_view_impl.h
|
| +++ b/content/renderer/render_view_impl.h
|
| @@ -153,6 +153,7 @@ class WebDOMMessageEvent;
|
| class WebDataSource;
|
| class WebDragData;
|
| class WebGeolocationClient;
|
| +class WebGestureEvent;
|
| #if defined(OS_ANDROID)
|
| class WebHitTestResult;
|
| #endif
|
| @@ -495,6 +496,9 @@ class RenderViewImpl : public RenderWidget,
|
| virtual void numberOfWheelEventHandlersChanged(unsigned num_handlers);
|
| virtual void hasTouchEventHandlers(bool has_handlers);
|
| virtual void didUpdateLayout();
|
| + virtual bool didTapMultipleTargets(
|
| + const WebKit::WebGestureEvent& event,
|
| + const WebKit::WebVector<WebKit::WebRect>& target_rects);
|
| virtual void navigateBackForwardSoon(int offset);
|
| virtual int historyBackListCount();
|
| virtual int historyForwardListCount();
|
| @@ -978,6 +982,7 @@ class RenderViewImpl : public RenderWidget,
|
| void OnPasteAndMatchStyle();
|
| void OnPostMessageEvent(const ViewMsg_PostMessage_Params& params);
|
| void OnRedo();
|
| + void OnReleaseDisambiguationPopupDIB(TransportDIB::Handle dib_handle);
|
| void OnReloadFrame();
|
| void OnReplace(const string16& text);
|
| CONTENT_EXPORT void OnReplaceAll(const string16& text);
|
|
|