1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
ash / public / cpp / resize_shadow_type.h [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_PUBLIC_CPP_RESIZE_SHADOW_TYPE_H_
#define ASH_PUBLIC_CPP_RESIZE_SHADOW_TYPE_H_
namespace ash {
// Resize shadow type.
enum class ResizeShadowType {
// Unlock type of shadow is shown when user drag on resizable window.
kUnlock,
// Lock type of shadow is shown on unresizable window.
kLock,
};
} // namespace ash
#endif // ASH_PUBLIC_CPP_RESIZE_SHADOW_TYPE_H_