Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(93)

Unified Diff: components/native_app_window/native_app_window_views.cc

Issue 603523002: Allow all app windows to minimize. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 5f0f0160fde2650f78844352547b334ef888b317..fb9168210365db4454b1628eaa9a1e91f67b6eab 100644
--- a/components/native_app_window/native_app_window_views.cc
+++ b/components/native_app_window/native_app_window_views.cc
@@ -219,8 +219,7 @@ bool NativeAppWindowViews::CanMaximize() const {
}
bool NativeAppWindowViews::CanMinimize() const {
- // TODO(jackhou): Change this to always be true.
- return CanMaximize();
+ return true;
}
base::string16 NativeAppWindowViews::GetWindowTitle() const {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698