ash_constants.h 950 B

123456789101112131415161718192021222324252627
  1. // Copyright (c) 2012 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_ASH_CONSTANTS_H_
  5. #define ASH_PUBLIC_CPP_ASH_CONSTANTS_H_
  6. #include "ash/public/cpp/accessibility_controller_enums.h"
  7. // Most Ash constants live in ash/constants/ash_constants.h. Only a few of theme
  8. // are here to avoid making //ash/constants depend on //ash/public/cpp.
  9. namespace ash {
  10. constexpr AutoclickEventType kDefaultAutoclickEventType =
  11. AutoclickEventType::kLeftClick;
  12. // The default automatic click menu position.
  13. constexpr FloatingMenuPosition kDefaultAutoclickMenuPosition =
  14. FloatingMenuPosition::kSystemDefault;
  15. // The default floating accessibility menu position.
  16. constexpr FloatingMenuPosition kDefaultFloatingMenuPosition =
  17. FloatingMenuPosition::kSystemDefault;
  18. } // namespace ash
  19. #endif // ASH_PUBLIC_CPP_ASH_CONSTANTS_H_