1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ash / drag_drop / drag_drop_util.cc [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/drag_drop/drag_drop_util.h"
#include "ash/style/ash_color_id.h"
#include "ui/gfx/shadow_util.h"
namespace ash::drag_drop {
namespace {
constexpr int kShadowElevation = 2;
} // namespace
const ui::ColorId kDragImageBackgroundColor = kColorAshShieldAndBaseOpaque;
const gfx::ShadowDetails& GetDragImageShadowDetails(
const std::optional<size_t>& corner_radius) {
return gfx::ShadowDetails::Get(kShadowElevation, corner_radius.value_or(0));
}
} // namespace ash::drag_drop