Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutThemeMac.mm

Issue 2932913002: Move spellcheck underline colors into LayoutTheme (Closed)
Patch Set: Fix Mac buildc Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
diff --git a/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm b/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
index d9456976bab97ffe9c972889463bb811b87a84ca..baa0da14001eb4467a7f7b11d587583fe822d9aa 100644
--- a/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
+++ b/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
@@ -192,6 +192,14 @@ Color LayoutThemeMac::PlatformInactiveListBoxSelectionForegroundColor() const {
return Color::kBlack;
}
+Color LayoutThemeMac::PlatformSpellingMarkerUnderlineColor() const {
+ return Color(251, 45, 29);
+}
+
+Color LayoutThemeMac::PlatformGrammarMarkerUnderlineColor() const {
+ return Color(107, 107, 107);
+}
+
Color LayoutThemeMac::PlatformFocusRingColor() const {
static const RGBA32 kOldAquaFocusRingColor = 0xFF7DADD9;
if (UsesTestModeFocusRingColor())
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutThemeMac.h ('k') | third_party/WebKit/Source/core/paint/InlineTextBoxPainter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698