5694785a25
This doesn't change _H_ vs _H__, it just fixes guards that didn't properly match the filename. Adds a guard to clipboard_util.h which was previously guardless. Review URL: http://codereview.chromium.org/42278 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11856 0039d316-1c4b-4281-b951-d872f2087c98
22 linhas
686 B
C++
22 linhas
686 B
C++
// 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_
|
|
|
|
#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_
|