| Index: chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc | 
| diff --git a/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc b/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc | 
| index d2e5704758a7ab0faf99f417c94dbbc2d8169efd..3fe6e66e63d7634c9b9a62aaf3ab929675d74e4b 100644 | 
| --- a/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc | 
| +++ b/chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.cc | 
| @@ -4,8 +4,8 @@ | 
|  | 
| #include "chrome/browser/ui/webui/settings/chromeos/device_keyboard_handler.h" | 
|  | 
| -#include "ash/common/new_window_delegate.h" | 
| #include "ash/common/wm_shell.h" | 
| +#include "ash/public/interfaces/new_window.mojom.h" | 
| #include "base/bind.h" | 
| #include "base/command_line.h" | 
| #include "base/values.h" | 
| @@ -67,7 +67,7 @@ void KeyboardHandler::HandleInitialize(const base::ListValue* args) { | 
|  | 
| void KeyboardHandler::HandleShowKeyboardShortcutsOverlay( | 
| const base::ListValue* args) const { | 
| -  ash::WmShell::Get()->new_window_delegate()->ShowKeyboardOverlay(); | 
| +  ash::WmShell::Get()->new_window_client()->ShowKeyboardOverlay(); | 
| } | 
|  | 
| void KeyboardHandler::UpdateShowKeys() { | 
|  |