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

Unified Diff: app/animation.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
« no previous file with comments | « no previous file | app/animation_unittest.cc » ('j') | chrome/browser/google/google_update.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/animation.cc
===================================================================
--- app/animation.cc (revision 62510)
+++ app/animation.cc (working copy)
@@ -8,7 +8,7 @@
#include "gfx/rect.h"
#if defined(OS_WIN)
-#include "base/win_util.h"
+#include "base/win/windows_version.h"
#endif
Animation::Animation(base::TimeDelta timer_interval)
@@ -90,7 +90,7 @@
// static
bool Animation::ShouldRenderRichAnimation() {
#if defined(OS_WIN)
- if (win_util::GetWinVersion() >= win_util::WINVERSION_VISTA) {
+ if (base::win::GetVersion() >= base::win::VERSION_VISTA) {
BOOL result;
// Get "Turn off all unnecessary animations" value.
if (::SystemParametersInfo(SPI_GETCLIENTAREAANIMATION, 0, &result, 0)) {
« no previous file with comments | « no previous file | app/animation_unittest.cc » ('j') | chrome/browser/google/google_update.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698