| // Copyright 2021 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "ui/color/color_mixers.h" |
| |
| #include "ui/color/core_default_color_mixer.h" |
| #include "ui/color/native_color_mixers.h" |
| #include "ui/color/ui_color_mixer.h" |
| |
| namespace ui { |
| |
| void AddColorMixers(ColorProvider* provider, |
| const ColorProviderManager::Key& key) { |
| ui::AddCoreDefaultColorMixer(provider, key); |
| ui::AddNativeCoreColorMixer(provider, key); |
| ui::AddUiColorMixer(provider, key); |
| ui::AddNativeUiColorMixer(provider, key); |
| ui::AddNativePostprocessingMixer(provider, key); |
| } |
| |
| } // namespace ui |