summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/layout/layout_theme_default.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-09-07 13:12:05 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-11-09 10:02:59 +0000
commit33fc33aa94d4add0878ec30dc818e34e1dd3cc2a (patch)
treef6af110909c79b2759136554f1143d8b0572af0a /chromium/third_party/blink/renderer/core/layout/layout_theme_default.h
parent7d2c5d177e9813077a621df8d18c0deda73099b3 (diff)
downloadqtwebengine-chromium-33fc33aa94d4add0878ec30dc818e34e1dd3cc2a.tar.gz
BASELINE: Update Chromium to 104.0.5112.120
Change-Id: I5d2726c2ab018d75d055739b6ba64317904f05bb Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/438935 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/layout/layout_theme_default.h')
-rw-r--r--chromium/third_party/blink/renderer/core/layout/layout_theme_default.h15
1 files changed, 13 insertions, 2 deletions
diff --git a/chromium/third_party/blink/renderer/core/layout/layout_theme_default.h b/chromium/third_party/blink/renderer/core/layout/layout_theme_default.h
index 5730745c441..442b1f9972e 100644
--- a/chromium/third_party/blink/renderer/core/layout/layout_theme_default.h
+++ b/chromium/third_party/blink/renderer/core/layout/layout_theme_default.h
@@ -48,12 +48,19 @@ class CORE_EXPORT LayoutThemeDefault : public LayoutTheme {
Color PlatformInactiveSelectionForegroundColor(
mojom::blink::ColorScheme color_scheme) const override;
+ Color PlatformActiveListBoxSelectionBackgroundColor(
+ mojom::blink::ColorScheme color_scheme) const override;
+ Color PlatformInactiveListBoxSelectionBackgroundColor(
+ mojom::blink::ColorScheme color_scheme) const override;
+ Color PlatformActiveListBoxSelectionForegroundColor(
+ mojom::blink::ColorScheme color_scheme) const override;
+ Color PlatformInactiveListBoxSelectionForegroundColor(
+ mojom::blink::ColorScheme color_scheme) const override;
+
gfx::Size SliderTickSize() const override;
int SliderTickOffsetFromTrackCenter() const override;
void AdjustSliderThumbSize(ComputedStyle&) const override;
- void SetCheckboxSize(ComputedStyle&) const override;
- void SetRadioSize(ComputedStyle&) const override;
void AdjustInnerSpinButtonStyle(ComputedStyle&) const override;
void AdjustButtonStyle(ComputedStyle&) const override;
@@ -109,6 +116,10 @@ class CORE_EXPORT LayoutThemeDefault : public LayoutTheme {
static Color active_selection_foreground_color_;
static Color inactive_selection_background_color_;
static Color inactive_selection_foreground_color_;
+ static Color active_list_box_selection_background_color_dark_mode_;
+ static Color active_list_box_selection_foreground_color_dark_mode_;
+ static Color inactive_list_box_selection_background_color_dark_mode_;
+ static Color inactive_list_box_selection_foreground_color_dark_mode_;
ThemePainterDefault painter_;
// Cached values for crbug.com/673754.