core_default_color_mixer.h 606 B

1234567891011121314151617181920
  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 UI_COLOR_CORE_DEFAULT_COLOR_MIXER_H_
  5. #define UI_COLOR_CORE_DEFAULT_COLOR_MIXER_H_
  6. #include "ui/color/color_provider_manager.h"
  7. namespace ui {
  8. class ColorProvider;
  9. // Adds a color mixer to |provider| that provides kColorSetCoreDefaults.
  10. void AddCoreDefaultColorMixer(ColorProvider* provider,
  11. const ColorProviderManager::Key& key);
  12. } // namespace ui
  13. #endif // UI_COLOR_CORE_DEFAULT_COLOR_MIXER_H_