resize_shadow_type.h 549 B

1234567891011121314151617181920
  1. // Copyright 2021 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. #ifndef ASH_PUBLIC_CPP_RESIZE_SHADOW_TYPE_H_
  5. #define ASH_PUBLIC_CPP_RESIZE_SHADOW_TYPE_H_
  6. namespace ash {
  7. // Resize shadow type.
  8. enum class ResizeShadowType {
  9. // Unlock type of shadow is shown when user drag on resizable window.
  10. kUnlock,
  11. // Lock type of shadow is shown on unresizable window.
  12. kLock,
  13. };
  14. } // namespace ash
  15. #endif // ASH_PUBLIC_CPP_RESIZE_SHADOW_TYPE_H_