| Index: content/renderer/render_widget.h
|
| diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h
|
| index fdc8909676b7ae6d56b9651734494e169d719a2d..fe3e9f1ba80cb5c74d9c8ee307b825745e61624a 100644
|
| --- a/content/renderer/render_widget.h
|
| +++ b/content/renderer/render_widget.h
|
| @@ -279,6 +279,10 @@ class CONTENT_EXPORT RenderWidget
|
| ResizeAck resize_ack);
|
|
|
| // RenderWidget IPC message handlers
|
| + void OnHandleInputEvent(const WebKit::WebInputEvent* event,
|
| + bool keyboard_shortcut);
|
| + void OnMouseCaptureLost();
|
| + virtual void OnSetFocus(bool enable);
|
| void OnClose();
|
| void OnCreatingNewAck();
|
| virtual void OnResize(const gfx::Size& new_size,
|
| @@ -294,10 +298,6 @@ class CONTENT_EXPORT RenderWidget
|
| void OnCreateVideoAck(int32 video_id);
|
| void OnUpdateVideoAck(int32 video_id);
|
| void OnRequestMoveAck();
|
| - void OnHandleInputEvent(const WebKit::WebInputEvent* event,
|
| - bool keyboard_shortcut);
|
| - void OnMouseCaptureLost();
|
| - virtual void OnSetFocus(bool enable);
|
| void OnSetInputMethodActive(bool is_active);
|
| virtual void OnImeSetComposition(
|
| const string16& text,
|
|
|