bubble_constants.h 799 B

1234567891011121314151617181920212223242526
  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_BUBBLE_BUBBLE_CONSTANTS_H_
  5. #define ASH_BUBBLE_BUBBLE_CONSTANTS_H_
  6. #include "ash/style/system_shadow.h"
  7. namespace ash {
  8. // The corner radius of a bubble, like the system tray bubble or the
  9. // productivity launcher bubble.
  10. constexpr int kBubbleCornerRadius = 16;
  11. // Padding used for bubbles that represent a menu of options, like the system
  12. // tray bubble or the switch access menu.
  13. constexpr int kBubbleMenuPadding = 8;
  14. // The elevation used for system tray bubble.
  15. constexpr SystemShadow::Type kBubbleShadowType =
  16. SystemShadow::Type::kElevation12;
  17. } // namespace ash
  18. #endif // ASH_BUBBLE_BUBBLE_CONSTANTS_H_