[M120 Migration][VD] Enable direct rendering for TVPlus
[platform/framework/web/chromium-efl.git] / components / eye_dropper / color_mixer.h
1 // Copyright 2023 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_EYE_DROPPER_COLOR_MIXER_H_
6 #define COMPONENTS_EYE_DROPPER_COLOR_MIXER_H_
7
8 namespace ui {
9 class ColorProvider;
10 struct ColorProviderKey;
11 }  // namespace ui
12
13 namespace eye_dropper {
14
15 // Adds a color mixer to `provider` that provides EyeDropper colors.
16 void AddColorMixer(ui::ColorProvider* provider,
17                    const ui::ColorProviderKey& key);
18
19 }  // namespace eye_dropper
20
21 #endif  // COMPONENTS_EYE_DROPPER_COLOR_MIXER_H_