Index: third_party/WebKit/Source/core/layout/LayoutTheme.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp |
index 85b2c3c282090fe7389b2622cbbd8cc1280391f8..08c3e9862fd287a88574d7004428140f9d91b55d 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp |
@@ -815,14 +815,16 @@ Color LayoutTheme::systemColor(CSSValueID cssValueId) const |
return Color(); |
} |
-Color LayoutTheme::platformActiveTextSearchHighlightColor() const |
+Color LayoutTheme::platformTextSearchHighlightColor(bool activeMatch) const |
{ |
- return Color(255, 150, 50); // Orange. |
+ if (activeMatch) |
+ return Color(255, 150, 50); // Orange. |
+ return Color(255, 255, 0); // Yellow. |
} |
-Color LayoutTheme::platformInactiveTextSearchHighlightColor() const |
+Color LayoutTheme::platformTextSearchColor(bool activeMatch) const |
{ |
- return Color(255, 255, 0); // Yellow. |
+ return Color::black; |
} |
Color LayoutTheme::tapHighlightColor() |