| Index: content/browser/web_contents/web_contents_view_aura.cc
|
| diff --git a/content/browser/web_contents/web_contents_view_aura.cc b/content/browser/web_contents/web_contents_view_aura.cc
|
| index 7c81d8e303fd39a9e8e5b2b20ded8303dc2f390a..d64359418175e2ec516d34cb52a714676867b8a3 100644
|
| --- a/content/browser/web_contents/web_contents_view_aura.cc
|
| +++ b/content/browser/web_contents/web_contents_view_aura.cc
|
| @@ -405,6 +405,17 @@ void WebContentsViewAura::ShowContextMenu(
|
| delegate_->ShowContextMenu(params);
|
| }
|
|
|
| +void WebContentsViewAura::ShowPopupMenu(const gfx::Rect& bounds,
|
| + int item_height,
|
| + double item_font_size,
|
| + int selected_item,
|
| + const std::vector<WebMenuItem>& items,
|
| + bool right_aligned,
|
| + bool allow_multiple_selection) {
|
| + // External popup menus are only used on Mac and Android.
|
| + NOTIMPLEMENTED();
|
| +}
|
| +
|
| void WebContentsViewAura::StartDragging(
|
| const WebDropData& drop_data,
|
| WebKit::WebDragOperationsMask operations,
|
|
|