blob: 764c1c920a54b9cf6470a565bb232214089b6baf [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_PUBLIC_PLATFORM_POINTER_PROPERTIES_H_
#define THIRD_PARTY_BLINK_PUBLIC_PLATFORM_POINTER_PROPERTIES_H_
namespace blink {
// Bit field values indicating available pointer types.
enum PointerType {
kPointerTypeNone = 1 << 0,
kPointerTypeCoarse = 1 << 1,
kPointerTypeFine = 1 << 2
};
// Bit field values indicating available hover types.
enum HoverType { kHoverTypeNone = 1 << 0, kHoverTypeHover = 1 << 1 };
}
#endif