Add plumbing for focus ring parameters

With this change, I've added plumbing to more easily permit the UA to
change how the focus ring is drawn.

Bug: None
Change-Id: I8d7e0baeaf9747996a0dcf25ae4854ae6fc22373
Reviewed-on: https://chromium-review.googlesource.com/c/1437540
Commit-Queue: Ian Vollick <[email protected]>
Reviewed-by: Ken Buchanan <[email protected]>
Reviewed-by: Chris Harrelson <[email protected]>
Reviewed-by: Scott Violet <[email protected]>
Reviewed-by: Bo <[email protected]>
Cr-Commit-Position: refs/heads/master@{#632488}
diff --git a/chrome/browser/renderer_preferences_util.cc b/chrome/browser/renderer_preferences_util.cc
index f3fc761c..f5ed7f0 100644
--- a/chrome/browser/renderer_preferences_util.cc
+++ b/chrome/browser/renderer_preferences_util.cc
@@ -14,7 +14,7 @@
 #include "chrome/common/pref_names.h"
 #include "components/language/core/browser/pref_names.h"
 #include "components/prefs/pref_service.h"
-#include "content/public/common/renderer_preferences_util.h"
+#include "content/public/browser/renderer_preferences_util.h"
 #include "content/public/common/webrtc_ip_handling_policy.h"
 #include "media/media_buildflags.h"
 #include "third_party/blink/public/mojom/renderer_preferences.mojom.h"
@@ -150,6 +150,7 @@
 
 #if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_WIN)
   content::UpdateFontRendererPreferencesFromSystemSettings(prefs);
+  content::UpdateFocusRingPreferencesFromSystemSettings(prefs);
 #endif
 
 #if !defined(OS_MACOSX)