chromium/ui/events/velocity_tracker/bitset_32.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_EVENTS_VELOCITY_TRACKER_BITSET_32_H_
#define UI_EVENTS_VELOCITY_TRACKER_BITSET_32_H_

#include <stdint.h>

#include "base/check_op.h"
#include "build/build_config.h"

namespace ui {

// Port of BitSet32 from Android
// * platform/system/core/include/utils/BitSet.h
// * Change-Id: 02c9460a0a05f27e0501f9e64cdf24091e7d3579
// * Please update the Change-Id as upstream Android changes are pulled.
struct BitSet32 {};

}  // namespace ui

#endif  // UI_EVENTS_VELOCITY_TRACKER_BITSET_32_H_