Index: ui/ozone/platform/egltest/ozone_platform_egltest.cc |
diff --git a/ui/ozone/platform/egltest/ozone_platform_egltest.cc b/ui/ozone/platform/egltest/ozone_platform_egltest.cc |
index 0e432981968dfe366f45ab0b64675de3b44600f4..becbb81ce8569457070241cb9c5439b190f3d5ae 100644 |
--- a/ui/ozone/platform/egltest/ozone_platform_egltest.cc |
+++ b/ui/ozone/platform/egltest/ozone_platform_egltest.cc |
@@ -94,6 +94,7 @@ class EgltestWindow : public PlatformWindow, public PlatformEventDispatcher { |
void Restore() override; |
void SetCursor(PlatformCursor cursor) override; |
void MoveCursorTo(const gfx::Point& location) override; |
+ void ConfineCursorToBounds(const gfx::Rect& bounds) override; |
// PlatformEventDispatcher: |
bool CanDispatchEvent(const PlatformEvent& event) override; |
@@ -172,6 +173,9 @@ void EgltestWindow::MoveCursorTo(const gfx::Point& location) { |
event_factory_->WarpCursorTo(window_id_, location); |
} |
+void EgltestWindow::ConfineCursorToBounds(const gfx::Rect& bounds) { |
+} |
+ |
bool EgltestWindow::CanDispatchEvent(const ui::PlatformEvent& ne) { |
return true; |
} |