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

Unified Diff: ash/common/system/tray/hover_highlight_view.cc

Issue 2453133002: [ash-md] Makes Wi-Fi header row sticky when network list is scrolled (Closed)
Patch Set: [ash-md] Makes Wi-Fi header row sticky when network list is scrolled (comments) Created 4 years, 1 month 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: ash/common/system/tray/hover_highlight_view.cc
diff --git a/ash/common/system/tray/hover_highlight_view.cc b/ash/common/system/tray/hover_highlight_view.cc
index 73a9ec8f102be4acc5a13beab3719ed073389441..f8bf417d2a680067eeee1dd256ae568414800409 100644
--- a/ash/common/system/tray/hover_highlight_view.cc
+++ b/ash/common/system/tray/hover_highlight_view.cc
@@ -279,7 +279,9 @@ void HoverHighlightView::OnEnabledChanged() {
}
void HoverHighlightView::OnPaintBackground(gfx::Canvas* canvas) {
- canvas->DrawColor(hover_ ? highlight_color_ : default_color_);
+ // TODO(varkha): debugging code - revert before landing.
+ ActionableView::OnPaintBackground(canvas);
+ // canvas->DrawColor(hover_ ? highlight_color_ : default_color_);
}
void HoverHighlightView::OnFocus() {

Powered by Google App Engine
This is Rietveld 408576698