#ifndef THIRD_PARTY_BLINK_PUBLIC_COMMON_RENDERER_PREFERENCES_RENDERER_PREFERENCES_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_RENDERER_PREFERENCES_RENDERER_PREFERENCES_H_
#include <stdint.h>
#include <optional>
#include <string>
#include <vector>
#include "base/time/time.h"
#include "build/build_config.h"
#include "third_party/blink/public/common/common_export.h"
#include "third_party/blink/public/common/user_agent/user_agent_metadata.h"
#include "ui/gfx/font_render_params.h"
namespace blink {
constexpr uint32_t kDefaultActiveSelectionBgColor = …;
#if BUILDFLAG(IS_ANDROID)
constexpr uint32_t kDefaultActiveSelectionFgColor = 0xFF000000;
#else
constexpr uint32_t kDefaultActiveSelectionFgColor = …;
#endif
constexpr uint32_t kDefaultInactiveSelectionBgColor = …;
constexpr uint32_t kDefaultInactiveSelectionFgColor = …;
struct BLINK_COMMON_EXPORT RendererPreferences { … };
}
#endif