| Index: ash/system/palette/palette_utils.cc | 
| diff --git a/ash/system/palette/palette_utils.cc b/ash/system/palette/palette_utils.cc | 
| index 97b7928537c1dc1cb25687c0141a37ede93b1135..09e3b015b33d809c598285adb2327b4c136f59de 100644 | 
| --- a/ash/system/palette/palette_utils.cc | 
| +++ b/ash/system/palette/palette_utils.cc | 
| @@ -8,7 +8,6 @@ | 
| #include "ash/palette_delegate.h" | 
| #include "ash/shelf/wm_shelf.h" | 
| #include "ash/shell.h" | 
| -#include "ash/shell_port.h" | 
| #include "ash/system/palette/palette_tray.h" | 
| #include "ash/system/status_area_widget.h" | 
| #include "ash/wm_window.h" | 
| @@ -55,7 +54,7 @@ bool ShouldShowPalette() { | 
| } | 
|  | 
| bool PaletteContainsPointInScreen(const gfx::Point& point) { | 
| -  for (WmWindow* window : ShellPort::Get()->GetAllRootWindows()) { | 
| +  for (aura::Window* window : Shell::GetAllRootWindows()) { | 
| PaletteTray* palette_tray = | 
| WmShelf::ForWindow(window)->GetStatusAreaWidget()->palette_tray(); | 
| if (palette_tray && palette_tray->ContainsPointInScreen(point)) | 
|  |