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

Unified Diff: third_party/WebKit/public/platform/PointerProperties.h

Issue 2673963002: Drop hover:on-demand support & let touch-screens report "none" instead. (Closed)
Patch Set: Fixed a "yikes!" Created 3 years, 9 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: third_party/WebKit/public/platform/PointerProperties.h
diff --git a/third_party/WebKit/public/platform/PointerProperties.h b/third_party/WebKit/public/platform/PointerProperties.h
index 12a1a02f56579365caff467762ba3252b8129402..d944d85c13495fa685b0eaafeb835875d03d4383 100644
--- a/third_party/WebKit/public/platform/PointerProperties.h
+++ b/third_party/WebKit/public/platform/PointerProperties.h
@@ -15,13 +15,7 @@ enum PointerType {
};
// Bit field values indicating available hover types.
-enum HoverType {
- HoverTypeNone = 1 << 0,
- // Indicates that the primary pointing system can hover, but it requires
- // a significant action on the user's part. e.g. hover on "long press".
- HoverTypeOnDemand = 1 << 1,
- HoverTypeHover = 1 << 2
-};
+enum HoverType { HoverTypeNone = 1 << 0, HoverTypeHover = 1 << 1 };
}
#endif

Powered by Google App Engine
This is Rietveld 408576698