commit | 02f80aa55eaa09a94967e89ef2e133c2f81de1c0 | [log] [tgz] |
---|---|---|
author | Eric Willigers <[email protected]> | Fri Apr 29 01:29:32 2022 |
committer | Chromium LUCI CQ <[email protected]> | Fri Apr 29 01:29:32 2022 |
tree | 77896f36a3b6adb77815648b3564fa41a68bd84b | |
parent | 2348a933ef9c68e9c7dd9278f8bf07f630ea0353 [diff] [blame] |
//chrome/browser: Use BUILDFLAG(IS_CHROMEOS) Checking BUILDFLAG(IS_CHROMEOS) is more concise than checking BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_CHROMEOS_LACROS) Bug: 1246565 Change-Id: Ia1864c325a256ac7117d07a795eac886a5f00ba0 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3611943 Commit-Queue: Eric Willigers <[email protected]> Reviewed-by: David Roger <[email protected]> Cr-Commit-Position: refs/heads/main@{#997516}
diff --git a/chrome/browser/renderer_preferences_util.cc b/chrome/browser/renderer_preferences_util.cc index 98be42418..1a17452 100644 --- a/chrome/browser/renderer_preferences_util.cc +++ b/chrome/browser/renderer_preferences_util.cc
@@ -146,7 +146,7 @@ pref_service->GetBoolean(prefs::kWebRTCAllowLegacyTLSProtocols); #if defined(USE_AURA) prefs->focus_ring_color = SkColorSetRGB(0x4D, 0x90, 0xFE); -#if BUILDFLAG(IS_CHROMEOS_ASH) || BUILDFLAG(IS_CHROMEOS_LACROS) +#if BUILDFLAG(IS_CHROMEOS) // This color is 0x544d90fe modulated with 0xffffff. prefs->active_selection_bg_color = SkColorSetRGB(0xCB, 0xE4, 0xFA); prefs->active_selection_fg_color = SK_ColorBLACK;