Chromium Code Reviews| Index: components/native_app_window/native_app_window_views.cc |
| diff --git a/components/native_app_window/native_app_window_views.cc b/components/native_app_window/native_app_window_views.cc |
| index 766b08861985b3e0f2d40f7a9f41afdc9801a11d..c3443de0bfa84eeeed8bf775cd111eeb9052cffb 100644 |
| --- a/components/native_app_window/native_app_window_views.cc |
| +++ b/components/native_app_window/native_app_window_views.cc |
| @@ -218,6 +218,10 @@ bool NativeAppWindowViews::CanMaximize() const { |
| !app_window_->window_type_is_panel() && !WidgetHasHitTestMask(); |
| } |
| +bool NativeAppWindowViews::CanMinimize() const { |
| + return CanMaximize(); |
|
James Cook
2014/09/23 16:18:02
nit: You might add a TODO here if you think this s
jackhou1
2014/09/24 00:49:18
Done.
|
| +} |
| + |
| base::string16 NativeAppWindowViews::GetWindowTitle() const { |
| return app_window_->GetTitle(); |
| } |