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

Unified Diff: ui/ozone/public/event_factory_ozone.cc

Issue 397063004: wip: not complete. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
« no previous file with comments | « ui/ozone/public/event_factory_ozone.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/public/event_factory_ozone.cc
diff --git a/ui/ozone/public/event_factory_ozone.cc b/ui/ozone/public/event_factory_ozone.cc
index 85ecf3ceddcec905ba7bcea44a5b2306e8c6ee05..9bf5acd2dc8cc1e8830f4f6d6c7325f643c0c8fd 100644
--- a/ui/ozone/public/event_factory_ozone.cc
+++ b/ui/ozone/public/event_factory_ozone.cc
@@ -8,6 +8,10 @@
namespace ui {
+EventFactoryOzone::IndirectTouchConfiguration::IndirectTouchConfiguration() : sensitivity_(0), tap_to_click_(false), three_finger_click_(false), tap_dragging_(false), natural_scroll_(false) {}
+
+EventFactoryOzone::RelXYConfiguration::RelXYConfiguration() : sensitivity_(0), primary_button_right_(false) {}
+
// static
EventFactoryOzone* EventFactoryOzone::impl_ = NULL;
@@ -31,4 +35,23 @@ void EventFactoryOzone::WarpCursorTo(gfx::AcceleratedWidget widget,
NOTIMPLEMENTED();
}
+bool EventFactoryOzone::HasIndirectTouch() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+void EventFactoryOzone::ConfigureIndirectTouchEventConverters(const IndirectTouchConfiguration& config, const IndirectTouchConfiguration& mask) {
+ NOTIMPLEMENTED();
+}
+
+bool EventFactoryOzone::HasRelXY() {
+ NOTIMPLEMENTED();
+ return false;
+}
+
+void EventFactoryOzone::ConfigureRelXYEventConverters(const RelXYConfiguration& config, const RelXYConfiguration& mask) {
+ NOTIMPLEMENTED();
+}
+
+
} // namespace ui
« no previous file with comments | « ui/ozone/public/event_factory_ozone.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698