diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-09 18:32:01 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-09 18:32:01 +0000 |
commit | 61a1c47f10df1a203039d48a57757da5c26ae92e (patch) | |
tree | c98724ee42f176c2b4ba4fbbdf8f2cf9028f3279 /base | |
parent | 6c4e6c1dbea8251c65bfcf92c815bd7838d38bad (diff) | |
download | chromium_src-61a1c47f10df1a203039d48a57757da5c26ae92e.zip chromium_src-61a1c47f10df1a203039d48a57757da5c26ae92e.tar.gz chromium_src-61a1c47f10df1a203039d48a57757da5c26ae92e.tar.bz2 |
base: Remove a file that is no longer used.
Probably since it was added at revision r8.
BUG=None
TEST=None
R=evan@chromium.org
Review URL: http://codereview.chromium.org/7558023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@96026 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/no_windows2000_unittest.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/base/no_windows2000_unittest.h b/base/no_windows2000_unittest.h deleted file mode 100644 index 4aae07d..0000000 --- a/base/no_windows2000_unittest.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) 2006-2008 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 BASE_NO_WINDOWS2000_UNITTEST_H_ -#define BASE_NO_WINDOWS2000_UNITTEST_H_ -#pragma once - -#include "testing/gtest/include/gtest/gtest.h" -#include "base/win_util.h" - -// Disable the whole test case when executing on Windows 2000 or lower. -// Note: Parent should be testing::Test or UITest. -template<typename Parent> -class NoWindows2000Test : public Parent { - public: - static bool IsTestCaseDisabled() { - return win_util::GetWinVersion() <= win_util::WINVERSION_2000; - } -}; - -#endif // BASE_NO_WINDOWS2000_UNITTEST_H_ |