commit | 5be670c8409bc52896ef2d46fe817d7d40c69437 | [log] [tgz] |
---|---|---|
author | Leonard Grey <[email protected]> | Thu Jun 13 17:56:29 2019 |
committer | Commit Bot <[email protected]> | Thu Jun 13 17:56:29 2019 |
tree | 58f42bdfbc1c97d9670eff077bee9d063ebc6535 | |
parent | ac0aa6f5c4ebc7a961cbd721ae1881ae1ac871ae [diff] [blame] |
Record metric for dark mode status on desktop Bug: 963939 Change-Id: Id1cc3f4e10fe3dde7b42b820b3821d26cb39aaca Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1653841 Commit-Queue: Leonard Grey <[email protected]> Reviewed-by: Ilya Sherman <[email protected]> Reviewed-by: Elly Fong-Jones <[email protected]> Cr-Commit-Position: refs/heads/master@{#668893}
diff --git a/ui/native_theme/native_theme.cc b/ui/native_theme/native_theme.cc index 44e4aca4..bffca9c 100644 --- a/ui/native_theme/native_theme.cc +++ b/ui/native_theme/native_theme.cc
@@ -48,6 +48,10 @@ return is_dark_mode_; } +bool NativeTheme::SystemDarkModeSupported() const { + return false; +} + bool NativeTheme::UsesHighContrastColors() const { return is_high_contrast_; }