summaryrefslogtreecommitdiffstats
path: root/ui/platform_window/x11
diff options
context:
space:
mode:
Diffstat (limited to 'ui/platform_window/x11')
-rw-r--r--ui/platform_window/x11/x11_window.cc4
-rw-r--r--ui/platform_window/x11/x11_window.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/ui/platform_window/x11/x11_window.cc b/ui/platform_window/x11/x11_window.cc
index 747581700..1e94ae2 100644
--- a/ui/platform_window/x11/x11_window.cc
+++ b/ui/platform_window/x11/x11_window.cc
@@ -260,6 +260,10 @@ void X11Window::MoveCursorTo(const gfx::Point& location) {}
void X11Window::ConfineCursorToBounds(const gfx::Rect& bounds) {
}
+PlatformImeController* X11Window::GetPlatformImeController() {
+ return nullptr;
+}
+
bool X11Window::CanDispatchEvent(const PlatformEvent& event) {
return FindXEventTarget(event) == xwindow_;
}
diff --git a/ui/platform_window/x11/x11_window.h b/ui/platform_window/x11/x11_window.h
index 0b6b9cb..6d422c7 100644
--- a/ui/platform_window/x11/x11_window.h
+++ b/ui/platform_window/x11/x11_window.h
@@ -43,6 +43,7 @@ class X11_WINDOW_EXPORT X11Window : public PlatformWindow,
void SetCursor(PlatformCursor cursor) override;
void MoveCursorTo(const gfx::Point& location) override;
void ConfineCursorToBounds(const gfx::Rect& bounds) override;
+ PlatformImeController* GetPlatformImeController() override;
// PlatformEventDispatcher:
bool CanDispatchEvent(const PlatformEvent& event) override;