summaryrefslogtreecommitdiffstats
path: root/ui/views/metrics_win.cc
diff options
context:
space:
mode:
authorsadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-12 04:45:08 +0000
committersadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-12 04:45:08 +0000
commitd5681e25a5f783677c981d72db0f89509eb836af (patch)
treed3c5d8ede95bd65246b261ce31ba3923f221c619 /ui/views/metrics_win.cc
parenta7e4b326b6312e048651f0e1e3199b09b985453f (diff)
downloadchromium_src-d5681e25a5f783677c981d72db0f89509eb836af.zip
chromium_src-d5681e25a5f783677c981d72db0f89509eb836af.tar.gz
chromium_src-d5681e25a5f783677c981d72db0f89509eb836af.tar.bz2
views: Remove unused windows files.
Most of the _win files are now excluded from the build on windows. So remove them from the tree. Also remove the only remaining instance of USE_AURA in views. BUG=343577 R=sky@chromium.org Review URL: https://codereview.chromium.org/195803002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256423 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/metrics_win.cc')
-rw-r--r--ui/views/metrics_win.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/ui/views/metrics_win.cc b/ui/views/metrics_win.cc
deleted file mode 100644
index 3e04446..0000000
--- a/ui/views/metrics_win.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright (c) 2011 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.
-
-#include "ui/views/metrics.h"
-
-#include <windows.h>
-
-namespace views {
-
-int GetDoubleClickInterval() {
- return ::GetDoubleClickTime();
-}
-
-int GetMenuShowDelay() {
- static DWORD delay = 0;
- if (!delay && !SystemParametersInfo(SPI_GETMENUSHOWDELAY, 0, &delay, 0))
- delay = kDefaultMenuShowDelay;
- return delay;
-}
-
-} // namespace views