| Index: content/browser/renderer_host/render_widget_host_delegate.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_delegate.h b/content/browser/renderer_host/render_widget_host_delegate.h
|
| index aac41d84a8422bb9307b33150abe74540a257295..e31975cb20366ee1b6026e7fa6929bbfbefde3c3 100644
|
| --- a/content/browser/renderer_host/render_widget_host_delegate.h
|
| +++ b/content/browser/renderer_host/render_widget_host_delegate.h
|
| @@ -42,10 +42,10 @@ class CONTENT_EXPORT RenderWidgetHostDelegate {
|
| // event (used for keyboard shortcuts).
|
| virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) {}
|
|
|
| - // Callback to give the browser a chance to handle the specified mouse wheel
|
| - // event before sending it to the renderer.
|
| - // Returns true if the |event| was handled.
|
| - virtual bool PreHandleWheelEvent(const blink::WebMouseWheelEvent& event);
|
| + // Callback to inform the browser that the renderer did not process the
|
| + // specified mouse wheel event. Returns true if the browser has handled
|
| + // the event itself.
|
| + virtual bool HandleWheelEvent(const blink::WebMouseWheelEvent& event);
|
|
|
| // Callback to give the browser a chance to handle the specified gesture
|
| // event before sending it to the renderer.
|
|
|