1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/views/metrics.h"
13 // Default double click interval in milliseconds.
14 const int kDefaultDoubleClickInterval
= 500;
20 int GetDoubleClickInterval() {
22 return ::GetDoubleClickTime();
24 // TODO(jennyz): This value may need to be adjusted on different platforms.
25 return kDefaultDoubleClickInterval
;
29 int GetMenuShowDelay() {
31 static DWORD delay
= 0;
32 if (!delay
&& !SystemParametersInfo(SPI_GETMENUSHOWDELAY
, 0, &delay
, 0))
33 delay
= kDefaultMenuShowDelay
;