// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_RASTER_DARK_MODE_FILTER_IMPL_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_RASTER_DARK_MODE_FILTER_IMPL_H_ #include "base/gtest_prod_util.h" #include "cc/tiles/raster_dark_mode_filter.h" #include "third_party/blink/renderer/platform/platform_export.h" namespace blink { class DarkModeFilter; struct DarkModeSettings; // This class wraps DarkModeFilter to be used in compositor and creates the dark // mode filter using dark mode settings passed. class PLATFORM_EXPORT RasterDarkModeFilterImpl : public cc::RasterDarkModeFilter { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_RASTER_DARK_MODE_FILTER_IMPL_H_