| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/views/widget/desktop_root_window_host_linux.h" | 5 #include "ui/views/widget/desktop_root_window_host_linux.h" |
| 6 | 6 |
| 7 #include "ui/aura/root_window.h" | 7 #include "ui/aura/root_window.h" |
| 8 | 8 |
| 9 namespace views { | 9 namespace views { |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 NOTIMPLEMENTED(); | 53 NOTIMPLEMENTED(); |
| 54 return true; | 54 return true; |
| 55 } | 55 } |
| 56 | 56 |
| 57 gfx::Rect DesktopRootWindowHostLinux::GetClientAreaBoundsInScreen() const { | 57 gfx::Rect DesktopRootWindowHostLinux::GetClientAreaBoundsInScreen() const { |
| 58 // TODO(erg): | 58 // TODO(erg): |
| 59 NOTIMPLEMENTED(); | 59 NOTIMPLEMENTED(); |
| 60 return gfx::Rect(100, 100); | 60 return gfx::Rect(100, 100); |
| 61 } | 61 } |
| 62 | 62 |
| 63 InputMethod* DesktopRootWindowHostLinux::CreateInputMethod() { |
| 64 // TODO(erg): |
| 65 NOTIMPLEMENTED(); |
| 66 return NULL; |
| 67 } |
| 68 |
| 69 internal::InputMethodDelegate* |
| 70 DesktopRootWindowHostLinux::GetInputMethodDelegate() { |
| 71 // TODO(erg): |
| 72 NOTIMPLEMENTED(); |
| 73 return NULL; |
| 74 } |
| 75 |
| 63 //////////////////////////////////////////////////////////////////////////////// | 76 //////////////////////////////////////////////////////////////////////////////// |
| 64 // DesktopRootWindowHost, public: | 77 // DesktopRootWindowHost, public: |
| 65 | 78 |
| 66 // static | 79 // static |
| 67 DesktopRootWindowHost* DesktopRootWindowHost::Create( | 80 DesktopRootWindowHost* DesktopRootWindowHost::Create( |
| 68 internal::NativeWidgetDelegate* native_widget_delegate, | 81 internal::NativeWidgetDelegate* native_widget_delegate, |
| 69 const gfx::Rect& initial_bounds) { | 82 const gfx::Rect& initial_bounds) { |
| 70 return new DesktopRootWindowHostLinux; | 83 return new DesktopRootWindowHostLinux; |
| 71 } | 84 } |
| 72 | 85 |
| 73 } // namespace views | 86 } // namespace views |
| OLD | NEW |