| Index: ui/base/win/shell.cc
|
| diff --git a/ui/base/win/shell.cc b/ui/base/win/shell.cc
|
| index 60c3ac5175dadeaabc1ad1930c51b68557f83fb1..4751fc84a9647c0a1afe1d356eb14a0a4c4086a8 100644
|
| --- a/ui/base/win/shell.cc
|
| +++ b/ui/base/win/shell.cc
|
| @@ -148,9 +148,9 @@ bool IsAeroGlassEnabled() {
|
| switches::kDisableDwmComposition))
|
| return false;
|
|
|
| - base::win::Version version = base::win::GetVersion();
|
| - base::debug::Alias(&version); // TODO(scottmg): http://crbug.com/431549.
|
| - if (version < base::win::VERSION_VISTA)
|
| + // Technically Aero glass works in Vista but we want to put XP and Vista
|
| + // at the same feature level. See bug 426573.
|
| + if (base::win::GetVersion() < base::win::VERSION_WIN7)
|
| return false;
|
| // If composition is not enabled, we behave like on XP.
|
| BOOL enabled = FALSE;
|
|
|