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

Unified Diff: ui/base/touch/touch_device_ozone.cc

Issue 696713002: Pointer/hover media query support: platform-dependent changes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added android_webview/java_library_common.mk for generated files Created 6 years 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/base/touch/touch_device_ozone.cc
diff --git a/ui/base/touch/touch_device_ozone.cc b/ui/base/touch/touch_device_ozone.cc
index ec5a6b70d7d8e8b2fd2f85d2c2efd632557c0f0e..1dde65d8da6870978ccc902d08f071bf81b48183 100644
--- a/ui/base/touch/touch_device_ozone.cc
+++ b/ui/base/touch/touch_device_ozone.cc
@@ -16,4 +16,24 @@ int MaxTouchPoints() {
return 11;
}
+int AvailablePointerTypes() {
+ // TODO(mustaq): Replace the stub below
+ return POINTER_TYPE_NONE;
+}
+
+PointerType PrimaryPointerType() {
+ // TODO(mustaq): Replace the stub below
+ return POINTER_TYPE_NONE;
+}
+
+int AvailableHoverTypes() {
+ // TODO(mustaq): Replace the stub below
+ return HOVER_TYPE_NONE;
+}
+
+HoverType PrimaryHoverType() {
+ // TODO(mustaq): Replace the stub below
+ return HOVER_TYPE_NONE;
+}
+
} // namespace ui

Powered by Google App Engine
This is Rietveld 408576698