Chromium Code Reviews| Index: third_party/WebKit/Source/core/layout/LayoutTheme.h |
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTheme.h b/third_party/WebKit/Source/core/layout/LayoutTheme.h |
| index 9bee55fef1c8ecd80e77971157bad99b71f76759..ba601a1529dedb9105e2252de5466c9c65bf615f 100644 |
| --- a/third_party/WebKit/Source/core/layout/LayoutTheme.h |
| +++ b/third_party/WebKit/Source/core/layout/LayoutTheme.h |
| @@ -116,9 +116,11 @@ public: |
| Color inactiveListBoxSelectionBackgroundColor() const; |
| Color inactiveListBoxSelectionForegroundColor() const; |
| - // Highlighting colors for TextMatches. |
| + // Highlighting and text colors for TextMatches. |
| virtual Color platformActiveTextSearchHighlightColor() const; |
|
pdr.
2015/12/01 23:58:48
Lets make these non-virtual too.
ramya.v
2015/12/10 09:39:37
Done.
|
| virtual Color platformInactiveTextSearchHighlightColor() const; |
| + virtual Color platformActiveTextSearchColor() const; |
|
pdr.
2015/12/01 23:58:48
Why are these virtual?
ramya.v
2015/12/10 09:39:37
Done.
|
| + virtual Color platformInactiveTextSearchColor() const; |
|
pdr.
2015/12/01 23:58:48
Because all callsites have the same ternary statem
ramya.v
2015/12/10 09:39:37
Done.
|
| Color focusRingColor() const; |
| virtual Color platformFocusRingColor() const { return Color(0, 0, 0); } |