Index: ash/common/shelf/shelf_window_watcher_item_delegate.cc |
diff --git a/ash/common/shelf/shelf_window_watcher_item_delegate.cc b/ash/common/shelf/shelf_window_watcher_item_delegate.cc |
index 2bac8bbb67192cb627677817ab271f41301ff064..88be8b7f780bad730d53bee3451549dd1b58ff28 100644 |
--- a/ash/common/shelf/shelf_window_watcher_item_delegate.cc |
+++ b/ash/common/shelf/shelf_window_watcher_item_delegate.cc |
@@ -7,9 +7,9 @@ |
#include "ash/common/shelf/shelf_controller.h" |
#include "ash/common/shelf/shelf_model.h" |
#include "ash/common/wm/window_state.h" |
-#include "ash/common/wm_shell.h" |
#include "ash/common/wm_window.h" |
#include "ash/public/cpp/window_properties.h" |
+#include "ash/shell.h" |
#include "ash/wm/window_util.h" |
#include "ui/aura/window.h" |
#include "ui/events/event_constants.h" |
@@ -19,7 +19,7 @@ namespace ash { |
namespace { |
ShelfItemType GetShelfItemType(ShelfID id) { |
- ShelfModel* model = WmShell::Get()->shelf_controller()->model(); |
+ ShelfModel* model = Shell::Get()->shelf_controller()->model(); |
ShelfItems::const_iterator item = model->ItemByID(id); |
return item == model->items().end() ? TYPE_UNDEFINED : item->type; |
} |