| Index: chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc | 
| diff --git a/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc b/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc | 
| index 44065df7fa060a83f73824156421e0b389636e3d..dbd287dfcbb0340f29cdb64e9bdc97c4572af7c1 100644 | 
| --- a/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc | 
| +++ b/chrome/browser/ui/webui/options/chromeos/keyboard_handler.cc | 
| @@ -9,8 +9,8 @@ | 
| #include <memory> | 
| #include <utility> | 
|  | 
| -#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/bind_helpers.h" | 
| #include "base/command_line.h" | 
| @@ -178,7 +178,7 @@ void KeyboardHandler::OnKeyboardDeviceConfigurationChanged() { | 
| } | 
|  | 
| void KeyboardHandler::HandleShowKeyboardShortcuts(const base::ListValue* args) { | 
| -  ash::WmShell::Get()->new_window_delegate()->ShowKeyboardOverlay(); | 
| +  ash::WmShell::Get()->new_window_client()->ShowKeyboardOverlay(); | 
| } | 
|  | 
| void KeyboardHandler::UpdateCapsLockOptions() const { | 
|  |