| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "extensions/components/native_app_window/native_app_window_views.h" | 5 #include "extensions/components/native_app_window/native_app_window_views.h" |
| 6 | 6 |
| 7 #include "base/threading/sequenced_worker_pool.h" | 7 #include "base/threading/sequenced_worker_pool.h" |
| 8 #include "content/public/browser/render_view_host.h" | 8 #include "content/public/browser/render_view_host.h" |
| 9 #include "content/public/browser/render_widget_host.h" | 9 #include "content/public/browser/render_widget_host.h" |
| 10 #include "content/public/browser/render_widget_host_view.h" | 10 #include "content/public/browser/render_widget_host_view.h" |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 return resizable_ && !size_constraints_.HasFixedSize() && | 212 return resizable_ && !size_constraints_.HasFixedSize() && |
| 213 !WidgetHasHitTestMask(); | 213 !WidgetHasHitTestMask(); |
| 214 } | 214 } |
| 215 | 215 |
| 216 bool NativeAppWindowViews::CanMaximize() const { | 216 bool NativeAppWindowViews::CanMaximize() const { |
| 217 return resizable_ && !size_constraints_.HasMaximumSize() && | 217 return resizable_ && !size_constraints_.HasMaximumSize() && |
| 218 !app_window_->window_type_is_panel() && !WidgetHasHitTestMask(); | 218 !app_window_->window_type_is_panel() && !WidgetHasHitTestMask(); |
| 219 } | 219 } |
| 220 | 220 |
| 221 bool NativeAppWindowViews::CanMinimize() const { | 221 bool NativeAppWindowViews::CanMinimize() const { |
| 222 return true; | 222 return !app_window_->show_on_lock_screen(); |
| 223 } | 223 } |
| 224 | 224 |
| 225 base::string16 NativeAppWindowViews::GetWindowTitle() const { | 225 base::string16 NativeAppWindowViews::GetWindowTitle() const { |
| 226 return app_window_->GetTitle(); | 226 return app_window_->GetTitle(); |
| 227 } | 227 } |
| 228 | 228 |
| 229 bool NativeAppWindowViews::ShouldShowWindowTitle() const { | 229 bool NativeAppWindowViews::ShouldShowWindowTitle() const { |
| 230 return false; | 230 return false; |
| 231 } | 231 } |
| 232 | 232 |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 return widget_->IsTranslucentWindowOpacitySupported(); | 431 return widget_->IsTranslucentWindowOpacitySupported(); |
| 432 } | 432 } |
| 433 | 433 |
| 434 void NativeAppWindowViews::SetVisibleOnAllWorkspaces(bool always_visible) { | 434 void NativeAppWindowViews::SetVisibleOnAllWorkspaces(bool always_visible) { |
| 435 widget_->SetVisibleOnAllWorkspaces(always_visible); | 435 widget_->SetVisibleOnAllWorkspaces(always_visible); |
| 436 } | 436 } |
| 437 | 437 |
| 438 void NativeAppWindowViews::SetActivateOnPointer(bool activate_on_pointer) {} | 438 void NativeAppWindowViews::SetActivateOnPointer(bool activate_on_pointer) {} |
| 439 | 439 |
| 440 } // namespace native_app_window | 440 } // namespace native_app_window |
| OLD | NEW |