| 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..d437f7ddacc05804947319427b4fa63ff07f179d 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
|
| @@ -825,6 +825,16 @@ Color LayoutTheme::platformInactiveTextSearchHighlightColor() const
|
| return Color(255, 255, 0); // Yellow.
|
| }
|
|
|
| +Color LayoutTheme::platformActiveTextSearchColor() const
|
| +{
|
| + return Color::black;
|
| +}
|
| +
|
| +Color LayoutTheme::platformInactiveTextSearchColor() const
|
| +{
|
| + return Color::black;
|
| +}
|
| +
|
| Color LayoutTheme::tapHighlightColor()
|
| {
|
| return theme().platformTapHighlightColor();
|
|
|