blob: ce8e6de3e9221dfb2d01b3062a943824f3ca2e1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Copyright 2013 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 UI_VIEWS_MOUSE_CONSTANTS_H_
#define UI_VIEWS_MOUSE_CONSTANTS_H_
#include "base/time/time.h"
namespace views {
// The amount of time, in milliseconds, between clicks until they're
// considered intentionally different.
constexpr auto kMinimumTimeBetweenButtonClicks =
base::TimeDelta::FromMilliseconds(100);
} // namespace views
#endif // UI_VIEWS_MOUSE_CONSTANTS_H_
|