| Index: chrome/browser/renderer_host/render_widget_host.cc
|
| ===================================================================
|
| --- chrome/browser/renderer_host/render_widget_host.cc (revision 63740)
|
| +++ chrome/browser/renderer_host/render_widget_host.cc (working copy)
|
| @@ -164,7 +164,6 @@
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_GpuRenderingActivated,
|
| OnMsgGpuRenderingActivated)
|
| #if defined(OS_MACOSX)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_ShowPopup, OnMsgShowPopup)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_GetScreenInfo, OnMsgGetScreenInfo)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_GetWindowRect, OnMsgGetWindowRect)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_GetRootWindowRect, OnMsgGetRootWindowRect)
|
| @@ -978,16 +977,6 @@
|
|
|
| #if defined(OS_MACOSX)
|
|
|
| -void RenderWidgetHost::OnMsgShowPopup(
|
| - const ViewHostMsg_ShowPopup_Params& params) {
|
| - view_->ShowPopupWithItems(params.bounds,
|
| - params.item_height,
|
| - params.item_font_size,
|
| - params.selected_item,
|
| - params.popup_items,
|
| - params.right_aligned);
|
| -}
|
| -
|
| void RenderWidgetHost::OnMsgGetScreenInfo(gfx::NativeViewId view,
|
| WebScreenInfo* results) {
|
| gfx::NativeView native_view = view_ ? view_->GetNativeView() : NULL;
|
|
|