1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ui/gfx/win/metro_mode.h"
7 #include "base/win/windows_version.h"
12 bool ShouldUseMetroMode() {
13 if (base::win::GetVersion() < base::win::VERSION_WIN8
)
16 // As of now ActivateApplication fails on Windows 10 (Build 9926).
17 // Until there is some clarity on special status of browser in metro mode on
18 // Windows 10, we just disable Chrome metro mode so that browser remains
19 // usable. See crbug.com/470227.
20 if (base::win::GetVersion() >= base::win::VERSION_WIN10
)