| Index: chrome/browser/ui/ash/launcher/extension_app_window_launcher_controller.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/extension_app_window_launcher_controller.cc b/chrome/browser/ui/ash/launcher/extension_app_window_launcher_controller.cc
|
| index a1a8100cdee825cd0ec606343bc1c3a368cea995..180ef58d7de4bfd1aa6f8bd751ebdaa80f190d79 100644
|
| --- a/chrome/browser/ui/ash/launcher/extension_app_window_launcher_controller.cc
|
| +++ b/chrome/browser/ui/ash/launcher/extension_app_window_launcher_controller.cc
|
| @@ -4,9 +4,9 @@
|
|
|
| #include "chrome/browser/ui/ash/launcher/extension_app_window_launcher_controller.h"
|
|
|
| -#include "ash/aura/wm_window_aura.h"
|
| #include "ash/common/shelf/shelf_delegate.h"
|
| #include "ash/common/wm_shell.h"
|
| +#include "ash/common/wm_window.h"
|
| #include "ash/common/wm_window_property.h"
|
| #include "ash/wm/window_util.h"
|
| #include "base/stl_util.h"
|
| @@ -192,8 +192,8 @@ void ExtensionAppWindowLauncherController::RegisterApp(AppWindow* app_window) {
|
| app_controller_map_[app_shelf_id] = controller;
|
| }
|
| owner()->SetItemStatus(shelf_id, status);
|
| - ash::WmWindowAura::Get(window)->SetIntProperty(
|
| - ash::WmWindowProperty::SHELF_ID, shelf_id);
|
| + ash::WmWindow::Get(window)->SetIntProperty(ash::WmWindowProperty::SHELF_ID,
|
| + shelf_id);
|
| }
|
|
|
| void ExtensionAppWindowLauncherController::UnregisterApp(aura::Window* window) {
|
|
|