| Index: ash/wm/frame_painter.cc
|
| diff --git a/ash/wm/frame_painter.cc b/ash/wm/frame_painter.cc
|
| index a73d70af1f62be2b13784163633f6f61b6b20007..83f3790d7136e1c71a07ad641cc027deba02bf6f 100644
|
| --- a/ash/wm/frame_painter.cc
|
| +++ b/ash/wm/frame_painter.cc
|
| @@ -125,9 +125,9 @@ bool IsVisibleNormalWindow(aura::Window* window) {
|
| namespace ash {
|
|
|
| // static
|
| -int FramePainter::kActiveWindowOpacity = 255;
|
| -int FramePainter::kInactiveWindowOpacity = 166;
|
| -int FramePainter::kSoloWindowOpacity = 230;
|
| +int FramePainter::kActiveWindowOpacity = 230; // "Linus-approved" values
|
| +int FramePainter::kInactiveWindowOpacity = 204;
|
| +int FramePainter::kSoloWindowOpacity = 51;
|
| std::set<FramePainter*>* FramePainter::instances_ = NULL;
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
| @@ -568,9 +568,6 @@ int FramePainter::GetTitleOffsetX() const {
|
| }
|
|
|
| bool FramePainter::UseSoloWindowHeader(aura::Window* ignore) const {
|
| - // Maximized windows don't use solo window transparency.
|
| - if (frame_ && frame_->IsMaximized())
|
| - return false;
|
| // In unit tests this can be called after the shell is destroyed.
|
| if (!Shell::HasInstance())
|
| return false;
|
|
|