| Index: ash/common/system/tray/system_tray.cc
|
| diff --git a/ash/common/system/tray/system_tray.cc b/ash/common/system/tray/system_tray.cc
|
| index b1a5de17ed4e1dd4d12c6a4bcb0f1d9a637f4f53..521e2057e473528c942b6ef3cc186650a7de8f17 100644
|
| --- a/ash/common/system/tray/system_tray.cc
|
| +++ b/ash/common/system/tray/system_tray.cc
|
| @@ -46,7 +46,6 @@
|
| #include "ash/common/system/web_notification/web_notification_tray.h"
|
| #include "ash/common/wm/container_finder.h"
|
| #include "ash/common/wm_activation_observer.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"
|
| @@ -643,8 +642,7 @@ void SystemTray::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);
|
|
|