| Index: extensions/components/native_app_window/native_app_window_views.cc
|
| diff --git a/extensions/components/native_app_window/native_app_window_views.cc b/extensions/components/native_app_window/native_app_window_views.cc
|
| index ba2d185f89470425565a437e9f11d1b3e2f59d42..e2818e20f107192c93a538cd26ddc31a31fd5b24 100644
|
| --- a/extensions/components/native_app_window/native_app_window_views.cc
|
| +++ b/extensions/components/native_app_window/native_app_window_views.cc
|
| @@ -227,7 +227,11 @@
|
| }
|
|
|
| bool NativeAppWindowViews::ShouldShowWindowTitle() const {
|
| - return false;
|
| + return app_window_->window_type() == AppWindow::WINDOW_TYPE_V1_PANEL;
|
| +}
|
| +
|
| +bool NativeAppWindowViews::ShouldShowWindowIcon() const {
|
| + return app_window_->window_type() == AppWindow::WINDOW_TYPE_V1_PANEL;
|
| }
|
|
|
| void NativeAppWindowViews::SaveWindowPlacement(const gfx::Rect& bounds,
|
|
|