| Index: components/exo/shell_surface_unittest.cc
 | 
| diff --git a/components/exo/shell_surface_unittest.cc b/components/exo/shell_surface_unittest.cc
 | 
| index b6a660aedae38b5158354d7efdabc4937237efd3..135395cc051e063517c46f47f707c4d7683e5d1d 100644
 | 
| --- a/components/exo/shell_surface_unittest.cc
 | 
| +++ b/components/exo/shell_surface_unittest.cc
 | 
| @@ -2,11 +2,11 @@
 | 
|  // Use of this source code is governed by a BSD-style license that can be
 | 
|  // found in the LICENSE file.
 | 
|  
 | 
| -#include "ash/aura/wm_window_aura.h"
 | 
|  #include "ash/common/accessibility_delegate.h"
 | 
|  #include "ash/common/wm/window_state.h"
 | 
|  #include "ash/common/wm/wm_event.h"
 | 
|  #include "ash/common/wm_shell.h"
 | 
| +#include "ash/common/wm_window.h"
 | 
|  #include "ash/public/cpp/shell_window_ids.h"
 | 
|  #include "ash/wm/window_state_aura.h"
 | 
|  #include "base/message_loop/message_loop.h"
 | 
| @@ -700,7 +700,7 @@ TEST_F(ShellSurfaceTest, ToggleFullscreen) {
 | 
|  
 | 
|    ash::wm::WMEvent event(ash::wm::WM_EVENT_TOGGLE_FULLSCREEN);
 | 
|    ash::WmWindow* window =
 | 
| -      ash::WmWindowAura::Get(shell_surface->GetWidget()->GetNativeWindow());
 | 
| +      ash::WmWindow::Get(shell_surface->GetWidget()->GetNativeWindow());
 | 
|  
 | 
|    // Enter fullscreen mode.
 | 
|    window->GetWindowState()->OnWMEvent(&event);
 | 
| @@ -735,7 +735,7 @@ TEST_F(ShellSurfaceTest, ImmersiveFullscreenBackground) {
 | 
|  
 | 
|    ash::wm::WMEvent event(ash::wm::WM_EVENT_TOGGLE_FULLSCREEN);
 | 
|    ash::WmWindow* window =
 | 
| -      ash::WmWindowAura::Get(shell_surface->GetWidget()->GetNativeWindow());
 | 
| +      ash::WmWindow::Get(shell_surface->GetWidget()->GetNativeWindow());
 | 
|  
 | 
|    // Enter immersive fullscreen mode. Shadow underlay is fullscreen.
 | 
|    window->GetWindowState()->OnWMEvent(&event);
 | 
| 
 |