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

Unified Diff: ui/views/widget/desktop_aura/desktop_native_widget_aura.cc

Issue 99553008: Fix regression where the active window header was not used for apps on CrOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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: ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
diff --git a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
index e95e67e9dc9b998de626174a24b6613853952521..7478fa5f4ece9a246586a060b20150d71a51909d 100644
--- a/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
+++ b/ui/views/widget/desktop_aura/desktop_native_widget_aura.cc
@@ -993,7 +993,7 @@ void DesktopNativeWidgetAura::OnWindowActivated(aura::Window* gained_active,
DCHECK(content_window_ == gained_active || content_window_ == lost_active);
if ((content_window_ == gained_active || content_window_ == lost_active) &&
IsVisible() && GetWidget()->non_client_view()) {
- GetWidget()->non_client_view()->SchedulePaint();
+ GetWidget()->non_client_view()->frame_view()->SchedulePaint();
}
if (gained_active == content_window_ && restore_focus_on_activate_) {
restore_focus_on_activate_ = false;

Powered by Google App Engine
This is Rietveld 408576698