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

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: bokan's comments. Created 3 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: 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..fe5b26a21e7654d6edbdb2dfcb78adc9ad925f73 100644
--- a/third_party/WebKit/public/platform/PointerProperties.h
+++ b/third_party/WebKit/public/platform/PointerProperties.h
@@ -17,8 +17,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".
+ // TODO(mustaq): This got removed from spec. crbug.com/654861.
HoverTypeOnDemand = 1 << 1,
HoverTypeHover = 1 << 2
};

Powered by Google App Engine
This is Rietveld 408576698