| Index: ash/accelerators/accelerator_delegate.cc
 | 
| diff --git a/ash/accelerators/accelerator_delegate.cc b/ash/accelerators/accelerator_delegate.cc
 | 
| index 92456ea6ebc5dc23880f3b1abab68cec31416446..679813fae5c7c2c7a4eb9db986858c93688a0198 100644
 | 
| --- a/ash/accelerators/accelerator_delegate.cc
 | 
| +++ b/ash/accelerators/accelerator_delegate.cc
 | 
| @@ -4,8 +4,8 @@
 | 
|  
 | 
|  #include "ash/accelerators/accelerator_delegate.h"
 | 
|  
 | 
| -#include "ash/aura/wm_window_aura.h"
 | 
|  #include "ash/common/accelerators/accelerator_router.h"
 | 
| +#include "ash/common/wm_window.h"
 | 
|  #include "ui/aura/window.h"
 | 
|  #include "ui/events/event.h"
 | 
|  
 | 
| @@ -19,8 +19,8 @@ bool AcceleratorDelegate::ProcessAccelerator(
 | 
|      const ui::KeyEvent& key_event,
 | 
|      const ui::Accelerator& accelerator) {
 | 
|    return router_->ProcessAccelerator(
 | 
| -      WmWindowAura::Get(static_cast<aura::Window*>(key_event.target())),
 | 
| -      key_event, accelerator);
 | 
| +      WmWindow::Get(static_cast<aura::Window*>(key_event.target())), key_event,
 | 
| +      accelerator);
 | 
|  }
 | 
|  
 | 
|  }  // namespace ash
 | 
| 
 |