Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(365)

Unified Diff: ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc

Issue 868043003: [PATCH 8/11] ozone: evdev: Plumb device changes to EventFactoryEvdev (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates for events_unittests Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
diff --git a/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc b/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
index e6b3b64ec78c714348ae2e88d3d275813a213d6f..2ca7c15e2bbca3733b5f464c8e18de28a7cb7219 100644
--- a/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
+++ b/ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc
@@ -88,6 +88,15 @@ class MockDeviceEventDispatcherEvdev : public DeviceEventDispatcherEvdev {
callback_.Run(params);
}
+ void DispatchKeyboardDevicesUpdated(
+ const std::vector<KeyboardDevice>& devices) override {}
+ void DispatchTouchscreenDevicesUpdated(
+ const std::vector<TouchscreenDevice>& devices) override {}
+ void DispatchMouseDevicesUpdated(
+ const std::vector<InputDevice>& devices) override {}
+ void DispatchTouchpadDevicesUpdated(
+ const std::vector<InputDevice>& devices) override {}
+
private:
base::Callback<void(const TouchEventParams& params)> callback_;
};

Powered by Google App Engine
This is Rietveld 408576698