Chromium Code Reviews| 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 }; |
|
Rick Byers
2017/03/21 20:47:17
nit: keep style of one value per line (unless styl
mustaq
2017/03/22 14:31:29
I also find it a bit unreadable but "git cl format
|
| } |
| #endif |