Chromium Code Reviews| Index: ash/frame/custom_frame_view_ash.cc |
| diff --git a/ash/frame/custom_frame_view_ash.cc b/ash/frame/custom_frame_view_ash.cc |
| index 450015a32a3256d21b24c3845886d9bdcd4755b3..61a77dd3bc406c725fa9378e03dd1dbe1e93ab6b 100644 |
| --- a/ash/frame/custom_frame_view_ash.cc |
| +++ b/ash/frame/custom_frame_view_ash.cc |
| @@ -205,7 +205,7 @@ CustomFrameViewAsh::HeaderView::HeaderView(views::Widget* frame) |
| // Unfortunately, there is no views::WidgetDelegate::CanMinimize(). Assume |
| // that the window frame can be minimized if it can be maximized. |
|
pkotwicz
2014/09/22 01:09:00
This comment is no longer true
jackhou1
2014/09/22 02:59:47
Done.
|
| FrameCaptionButtonContainerView::MinimizeAllowed minimize_allowed = |
| - frame_->widget_delegate()->CanMaximize() ? |
| + frame_->widget_delegate()->CanMinimize() ? |
| FrameCaptionButtonContainerView::MINIMIZE_ALLOWED : |
| FrameCaptionButtonContainerView::MINIMIZE_DISALLOWED; |
| caption_button_container_ = new FrameCaptionButtonContainerView(frame_, |