| Index: ash/common/system/chromeos/ime_menu/ime_menu_tray.cc
|
| diff --git a/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc b/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc
|
| index ff2e5f133a4bbd78c703255ea2d57b43e93f22e3..b683e1c20468709ad4426520251b68bcf8f7aabd 100644
|
| --- a/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc
|
| +++ b/ash/common/system/chromeos/ime_menu/ime_menu_tray.cc
|
| @@ -20,7 +20,6 @@
|
| #include "ash/common/system/tray/tray_popup_item_style.h"
|
| #include "ash/common/system/tray/tray_popup_utils.h"
|
| #include "ash/common/system/tray/tray_utils.h"
|
| -#include "ash/common/wm_lookup.h"
|
| #include "ash/common/wm_shell.h"
|
| #include "ash/common/wm_window.h"
|
| #include "ash/public/cpp/shell_window_ids.h"
|
| @@ -573,8 +572,7 @@ void ImeMenuTray::OnBeforeBubbleWidgetInit(
|
| views::Widget* bubble_widget,
|
| views::Widget::InitParams* params) const {
|
| // Place the bubble in the same root window as |anchor_widget|.
|
| - WmLookup::Get()
|
| - ->GetWindowForWidget(anchor_widget)
|
| + WmWindow::Get(anchor_widget->GetNativeWindow())
|
| ->GetRootWindowController()
|
| ->ConfigureWidgetInitParamsForContainer(
|
| bubble_widget, kShellWindowId_SettingBubbleContainer, params);
|
|
|