blob: d944d85c13495fa685b0eaafeb835875d03d4383 [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 PointerProperties_h
#define PointerProperties_h
namespace blink {
// Bit field values indicating available pointer types.
enum PointerType {
PointerTypeNone = 1 << 0,
PointerTypeCoarse = 1 << 1,
PointerTypeFine = 1 << 2
};
// Bit field values indicating available hover types.
enum HoverType { HoverTypeNone = 1 << 0, HoverTypeHover = 1 << 1 };
}
#endif