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

Unified Diff: ui/events/devices/x11/device_data_manager_x11_unittest.cc

Issue 945983002: Make ui::InputDeviceEventObserver provide a default implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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/devices/x11/device_data_manager_x11_unittest.cc
diff --git a/ui/events/devices/x11/device_data_manager_x11_unittest.cc b/ui/events/devices/x11/device_data_manager_x11_unittest.cc
index 75a43d147a781adc0c80c1ca82b1a3e76d49e1ef..444611f4fcc6b25da67d9168c54d9ba1020fce74 100644
--- a/ui/events/devices/x11/device_data_manager_x11_unittest.cc
+++ b/ui/events/devices/x11/device_data_manager_x11_unittest.cc
@@ -35,12 +35,9 @@ class TestInputDeviceObserver : public InputDeviceEventObserver {
}
// InputDeviceEventObserver implementation.
- void OnTouchscreenDeviceConfigurationChanged() override {}
void OnKeyboardDeviceConfigurationChanged() override {
change_notified_ = true;
}
- void OnMouseDeviceConfigurationChanged() override {}
- void OnTouchpadDeviceConfigurationChanged() override {}
int change_notified() const { return change_notified_; }
void Reset() { change_notified_ = false; }

Powered by Google App Engine
This is Rietveld 408576698