Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(791)

Unified Diff: app/animation_unittest.cc

Issue 3823002: Move windows version-related stuff out of base/win_util and into base/win/win... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: app/animation_unittest.cc
===================================================================
--- app/animation_unittest.cc (revision 62510)
+++ app/animation_unittest.cc (working copy)
@@ -5,7 +5,7 @@
#include "app/linear_animation.h"
#include "app/test_animation_delegate.h"
#if defined(OS_WIN)
-#include "base/win_util.h"
+#include "base/win/windows_version.h"
#endif
#include "testing/gtest/include/gtest/gtest.h"
@@ -122,7 +122,7 @@
TEST_F(AnimationTest, ShouldRenderRichAnimation) {
#if defined(OS_WIN)
- if (win_util::GetWinVersion() >= win_util::WINVERSION_VISTA) {
+ if (base::win::GetVersion() >= base::win::VERSION_VISTA) {
BOOL result;
ASSERT_NE(
0, ::SystemParametersInfo(SPI_GETCLIENTAREAANIMATION, 0, &result, 0));

Powered by Google App Engine
This is Rietveld 408576698