| Index: ash/accelerators/accelerator_controller.cc
|
| diff --git a/ash/accelerators/accelerator_controller.cc b/ash/accelerators/accelerator_controller.cc
|
| index 452df17fa2a1099cfabd84f0adad1daf1e604bf1..2b3b5b1309948833cb71ab9050041048b580c0a3 100644
|
| --- a/ash/accelerators/accelerator_controller.cc
|
| +++ b/ash/accelerators/accelerator_controller.cc
|
| @@ -339,7 +339,7 @@ void HandleShowMessageCenterBubble() {
|
| WebNotificationTray* notification_tray =
|
| status_area_widget->web_notification_tray();
|
| if (notification_tray->visible())
|
| - notification_tray->ShowMessageCenterBubble();
|
| + notification_tray->ShowBubble();
|
| }
|
| }
|
|
|
| @@ -456,8 +456,8 @@ void HandleShowImeMenuBubble() {
|
| if (status_area_widget) {
|
| ImeMenuTray* ime_menu_tray = status_area_widget->ime_menu_tray();
|
| if (ime_menu_tray && ime_menu_tray->visible() &&
|
| - !ime_menu_tray->IsImeMenuBubbleShown()) {
|
| - ime_menu_tray->ShowImeMenuBubble();
|
| + !ime_menu_tray->GetBubbleView()) {
|
| + ime_menu_tray->ShowBubble();
|
| }
|
| }
|
| }
|
| @@ -516,7 +516,7 @@ void HandleShowStylusTools() {
|
| Shelf::ForWindow(Shell::GetRootWindowForNewWindows())
|
| ->GetStatusAreaWidget()
|
| ->palette_tray()
|
| - ->ShowPalette();
|
| + ->ShowBubble();
|
| }
|
|
|
| bool CanHandleShowStylusTools() {
|
|
|