| Index: content/browser/web_contents/web_contents_view_android.cc
|
| diff --git a/content/browser/web_contents/web_contents_view_android.cc b/content/browser/web_contents/web_contents_view_android.cc
|
| index 3378595be7ede7dac3f63068703d30b3972a54c7..58ed0efba8879f175e21c498f6677ddd175c0d5f 100644
|
| --- a/content/browser/web_contents/web_contents_view_android.cc
|
| +++ b/content/browser/web_contents/web_contents_view_android.cc
|
| @@ -163,6 +163,7 @@ void WebContentsViewAndroid::ShowContextMenu(
|
| }
|
|
|
| void WebContentsViewAndroid::ShowPopupMenu(
|
| + RenderFrameHost* render_frame_host,
|
| const gfx::Rect& bounds,
|
| int item_height,
|
| double item_font_size,
|
| @@ -171,8 +172,11 @@ void WebContentsViewAndroid::ShowPopupMenu(
|
| bool right_aligned,
|
| bool allow_multiple_selection) {
|
| if (content_view_core_) {
|
| - content_view_core_->ShowSelectPopupMenu(
|
| - bounds, items, selected_item, allow_multiple_selection);
|
| + content_view_core_->ShowSelectPopupMenu(render_frame_host,
|
| + bounds,
|
| + items,
|
| + selected_item,
|
| + allow_multiple_selection);
|
| }
|
| }
|
|
|
|
|