Home | History | Annotate | Download | only in util
      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.
      4 
      5 #include "win8/util/win8_util.h"
      6 
      7 #include "base/win/metro.h"
      8 
      9 namespace win8 {
     10 
     11 bool IsSingleWindowMetroMode() {
     12 #if defined(USE_ASH)
     13   return false;
     14 #else
     15   return base::win::IsMetroProcess();
     16 #endif
     17 }
     18 
     19 }  // namespace win8
     20