diff options
Diffstat (limited to 'ash/ash_switches.h')
-rw-r--r-- | ash/ash_switches.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ash/ash_switches.h b/ash/ash_switches.h new file mode 100644 index 0000000..559f1cf --- /dev/null +++ b/ash/ash_switches.h @@ -0,0 +1,29 @@ +// Copyright (c) 2011 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 ASH_ASH_SWITCHES_H_ +#define ASH_ASH_SWITCHES_H_ +#pragma once + +#include "ash/ash_export.h" + +namespace aura_shell { +namespace switches { + +// Please keep alphabetized. +ASH_EXPORT extern const char kAuraNoShadows[]; +ASH_EXPORT extern const char kAuraTranslucentFrames[]; +ASH_EXPORT extern const char kAuraViewsAppList[]; +ASH_EXPORT extern const char kAuraWindowMode[]; +ASH_EXPORT extern const char kAuraWindowModeCompact[]; +ASH_EXPORT extern const char kAuraWindowModeNormal[]; +ASH_EXPORT extern const char kAuraWorkspaceManager[]; + +// Utilities for testing multi-valued switches. +ASH_EXPORT bool IsAuraWindowModeCompact(); + +} // namespace switches +} // namespace aura_shell + +#endif // ASH_ASH_SWITCHES_H_ |