Index: ash/accelerators/accelerator_controller.cc |
diff --git a/ash/accelerators/accelerator_controller.cc b/ash/accelerators/accelerator_controller.cc |
index f7a9ecba6754a227faa73cdc8cf3f3154a554106..e2309fc8d8f1225acf4497af1c2c01d1464d687e 100644 |
--- a/ash/accelerators/accelerator_controller.cc |
+++ b/ash/accelerators/accelerator_controller.cc |
@@ -700,18 +700,14 @@ bool AcceleratorController::PerformAction(int action, |
break; |
case SHOW_SYSTEM_TRAY_BUBBLE: { |
internal::RootWindowController* controller = |
- Shell::IsLauncherPerDisplayEnabled() ? |
- internal::RootWindowController::ForActiveRootWindow() : |
- Shell::GetPrimaryRootWindowController(); |
+ internal::RootWindowController::ForActiveRootWindow(); |
if (!controller->GetSystemTray()->HasSystemBubble()) |
controller->GetSystemTray()->ShowDefaultView(BUBBLE_CREATE_NEW); |
break; |
} |
case SHOW_MESSAGE_CENTER_BUBBLE: { |
internal::RootWindowController* controller = |
- Shell::IsLauncherPerDisplayEnabled() ? |
- internal::RootWindowController::ForActiveRootWindow() : |
- Shell::GetPrimaryRootWindowController(); |
+ internal::RootWindowController::ForActiveRootWindow(); |
internal::StatusAreaWidget* status_area_widget = |
controller->shelf()->status_area_widget(); |
if (status_area_widget) { |