| Index: chrome/browser/tab_contents/render_view_context_menu.cc
|
| diff --git a/chrome/browser/tab_contents/render_view_context_menu.cc b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| index 3e41d8855baa1137b923cba5d79d8c9d650dd07c..e24f65e242729009b70710cbc26008720c68800f 100644
|
| --- a/chrome/browser/tab_contents/render_view_context_menu.cc
|
| +++ b/chrome/browser/tab_contents/render_view_context_menu.cc
|
| @@ -1853,7 +1853,7 @@ void RenderViewContextMenu::MenuWillShow(ui::SimpleMenuModel* source) {
|
|
|
| RenderWidgetHostView* view = source_web_contents_->GetRenderWidgetHostView();
|
| if (view)
|
| - view->ShowingContextMenu(true);
|
| + view->SetShowingContextMenu(true);
|
| }
|
|
|
| void RenderViewContextMenu::MenuClosed(ui::SimpleMenuModel* source) {
|
| @@ -1863,7 +1863,7 @@ void RenderViewContextMenu::MenuClosed(ui::SimpleMenuModel* source) {
|
|
|
| RenderWidgetHostView* view = source_web_contents_->GetRenderWidgetHostView();
|
| if (view)
|
| - view->ShowingContextMenu(false);
|
| + view->SetShowingContextMenu(false);
|
| RenderViewHost* rvh = source_web_contents_->GetRenderViewHost();
|
| if (rvh) {
|
| rvh->NotifyContextMenuClosed(params_.custom_context);
|
|
|