summaryrefslogtreecommitdiff
path: root/chromium/win8/util/win8_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/win8/util/win8_util.h')
-rw-r--r--chromium/win8/util/win8_util.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/chromium/win8/util/win8_util.h b/chromium/win8/util/win8_util.h
new file mode 100644
index 00000000000..25d6ec09a83
--- /dev/null
+++ b/chromium/win8/util/win8_util.h
@@ -0,0 +1,18 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WIN8_UTIL_WIN8_UTIL_H_
+#define WIN8_UTIL_WIN8_UTIL_H_
+
+namespace win8 {
+
+// Returns true if this process is running in fullscreen Metro mode on Win8+.
+// Callers should always prefer this method to base::win::IsMetroProcess() for
+// UI properties dependent on the single window mode as this method is also
+// aware of the Ash environment in which multiple Chrome windows can live.
+bool IsSingleWindowMetroMode();
+
+} // namespace win8
+
+#endif // WIN8_UTIL_WIN8_UTIL_H_