| Index: chrome/browser/renderer_host/render_widget_host.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_widget_host.cc (revision 26504)
|
| +++ chrome/browser/renderer_host/render_widget_host.cc (working copy)
|
| @@ -132,6 +132,7 @@
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_HandleInputEvent_ACK, OnMsgInputEventAck)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_Focus, OnMsgFocus)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_Blur, OnMsgBlur)
|
| + IPC_MESSAGE_HANDLER(ViewHostMsg_FocusedNodeChanged, OnMsgFocusedNodeChanged)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_SetCursor, OnMsgSetCursor)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ImeUpdateStatus, OnMsgImeUpdateStatus)
|
| #if defined(OS_LINUX)
|
| @@ -778,6 +779,9 @@
|
| }
|
| }
|
|
|
| +void RenderWidgetHost::OnMsgFocusedNodeChanged() {
|
| +}
|
| +
|
| void RenderWidgetHost::OnMsgSetCursor(const WebCursor& cursor) {
|
| if (!view_) {
|
| return;
|
|
|