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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTheme.cpp

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Remove some unused fields in SuggestionsPopupWindow, don't hold reference to mutable array passed in 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/LayoutTheme.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
index 9bbe8ea8d9836a033dfeeab7fa72b82943c00f1a..1ac06f8762a32745e8bf2d3b311cf74702c45445 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
@@ -340,6 +340,10 @@ Color LayoutTheme::PlatformGrammarMarkerUnderlineColor() const {
return Color(192, 192, 192);
}
+Color LayoutTheme::PlatformActiveSpellingMarkerHighlightColor() const {
+ return Color(255, 0, 0, 102);
+}
+
Color LayoutTheme::PlatformActiveSelectionBackgroundColor() const {
// Use a blue color by default if the platform theme doesn't define anything.
return Color(0, 0, 255);

Powered by Google App Engine
This is Rietveld 408576698