| 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
|
|
|