Index: ash/shell.cc |
diff --git a/ash/shell.cc b/ash/shell.cc |
index 1cc177f5d9788b8c0760a9898641931c2e01a6a5..1bda4db53953802b989a4533be78f2f3736283ba 100644 |
--- a/ash/shell.cc |
+++ b/ash/shell.cc |
@@ -621,7 +621,8 @@ void Shell::Init() { |
} |
} |
-void Shell::ShowContextMenu(const gfx::Point& location_in_screen) { |
+void Shell::ShowContextMenu(const gfx::Point& location_in_screen, |
+ ui::MenuSourceType source_type) { |
// No context menus if there is no session with an active user. |
if (!session_state_delegate_->NumberOfLoggedInUsers()) |
return; |
@@ -639,7 +640,7 @@ void Shell::ShowContextMenu(const gfx::Point& location_in_screen) { |
CHECK(rwc) << "root=" << root |
<< ", location:" << location_in_screen.ToString(); |
if (rwc) |
- rwc->ShowContextMenu(location_in_screen); |
+ rwc->ShowContextMenu(location_in_screen, source_type); |
} |
void Shell::ToggleAppList(aura::Window* window) { |