Chromium Code Reviews| Index: ui/views/widget/desktop_aura/desktop_root_window_host_linux.cc |
| diff --git a/ui/views/widget/desktop_aura/desktop_root_window_host_linux.cc b/ui/views/widget/desktop_aura/desktop_root_window_host_linux.cc |
| index a402d72c08c2df83cd9ef70805a6baefac0f2e15..078fad7b50597a56b25155f7ce54b1009e46dacd 100644 |
| --- a/ui/views/widget/desktop_aura/desktop_root_window_host_linux.cc |
| +++ b/ui/views/widget/desktop_aura/desktop_root_window_host_linux.cc |
| @@ -329,6 +329,10 @@ aura::RootWindow* DesktopRootWindowHostLinux::Init( |
| return InitRootWindow(sanitized_params); |
| } |
| +void DesktopRootWindowHostLinux::InitFocus(aura::Window* window) { |
| + NOTIMPLEMENTED(); |
|
sky
2013/03/15 03:15:05
Should this be focus_client_->FocusWindow(window);
scottmg
2013/03/15 22:23:46
I don't know, I haven't tested on Linux beyond mak
|
| +} |
| + |
| void DesktopRootWindowHostLinux::Close() { |
| // TODO(erg): Might need to do additional hiding tasks here. |
| @@ -877,6 +881,11 @@ void DesktopRootWindowHostLinux::OnDeviceScaleFactorChanged( |
| void DesktopRootWindowHostLinux::PrepareForShutdown() { |
| } |
| +void DesktopRootWindowHostLinux::SetHostWindowExpansion( |
| + const gfx::Rect& extra) { |
| + NOTIMPLEMENTED(); |
| +} |
| + |
| //////////////////////////////////////////////////////////////////////////////// |
| // DesktopRootWindowHostLinux, MessageLoop::Dispatcher implementation: |