Implemented UI for new first-run tutorial.
[chromium-blink-merge.git] / win8 / util / win8_util.cc
blobb630b8fdc1e6b5153b685f0e98ea46e0b95de507
1 // Copyright (c) 2012 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 "win8/util/win8_util.h"
7 #include "base/win/metro.h"
9 namespace win8 {
11 bool IsSingleWindowMetroMode() {
12 #if defined(USE_ASH)
13 return false;
14 #else
15 return base::win::IsMetroProcess();
16 #endif
19 } // namespace win8