chromeos: bluetooth: add BluetoothNodeClient
[chromium-blink-merge.git] / ash / wm / shadow_types.h
blobbf30037bb35099f883b2b54d0a6825a45704e41d
1 // Copyright (c) 2011 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 #ifndef ASH_WM_SHADOW_TYPES_H_
6 #define ASH_WM_SHADOW_TYPES_H_
7 #pragma once
9 #include "ash/ash_export.h"
11 namespace aura {
12 class Window;
15 namespace ash {
16 namespace internal {
18 // Different types of drop shadows that can be drawn under a window by the
19 // shell. Used as a value for the kShadowTypeKey property.
20 enum ShadowType {
21 // Starts at 0 due to the cast in GetShadowType().
22 SHADOW_TYPE_NONE = 0,
23 SHADOW_TYPE_RECTANGULAR,
26 ASH_EXPORT void SetShadowType(aura::Window* window,
27 ShadowType shadow_type);
28 ASH_EXPORT ShadowType GetShadowType(aura::Window* window);
30 } // namespace internal
31 } // namespace ash
33 #endif // ASH_WM_SHADOW_TYPES_H_