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

Unified Diff: ui/views/view.cc

Issue 296823002: views: Also const-ify GetMaximumSize(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « ui/views/view.h ('k') | ui/views/widget/native_widget_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/view.cc
diff --git a/ui/views/view.cc b/ui/views/view.cc
index 1f3c0a5d82e97e035ed4c581fedafabe137a57a4..36354a5fa816f314b5179fd7a6ee94ec03ba9c5a 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -444,7 +444,7 @@ gfx::Size View::GetMinimumSize() const {
return GetPreferredSize();
}
-gfx::Size View::GetMaximumSize() {
+gfx::Size View::GetMaximumSize() const {
return gfx::Size();
}
« no previous file with comments | « ui/views/view.h ('k') | ui/views/widget/native_widget_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698