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 #ifndef VIEWS_METRICS_H_
6 #define VIEWS_METRICS_H_
11 // NOTE: All times in this file are/should be expressed in milliseconds.
13 // The default value for how long to wait before showing a menu button on hover.
14 // This value is used if the OS doesn't supply one.
15 extern const int kDefaultMenuShowDelay
;
17 // Returns the amount of time between double clicks.
18 int GetDoubleClickInterval();
20 // Returns the amount of time to wait from hovering over a menu button until
22 int GetMenuShowDelay();
26 #endif // VIEWS_METRICS_H_