// Copyright 2017 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_DARK_MODE_SETTINGS_H_ #define THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_DARK_MODE_SETTINGS_H_ namespace blink { enum class DarkModeInversionAlgorithm { … }; enum class DarkModeImagePolicy { … }; enum class DarkModeImageClassifierPolicy { … }; // New variables added to this struct should be considered in // third_party/blink/renderer/platform/graphics/dark_mode_settings_builder.h struct DarkModeSettings { … }; } // namespace blink #endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_GRAPHICS_DARK_MODE_SETTINGS_H_