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

Unified Diff: chrome/browser/ui/views/apps/glass_app_window_frame_view_win.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
Index: chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
diff --git a/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc b/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
index f93f53bf048547537aeb63da734a1692c67308e7..5f31c610299a69d0ccf3f48fc570f32f0dfa397d 100644
--- a/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
+++ b/chrome/browser/ui/views/apps/glass_app_window_frame_view_win.cc
@@ -116,7 +116,7 @@ gfx::Size GlassAppWindowFrameViewWin::GetMinimumSize() const {
return min_size;
}
-gfx::Size GlassAppWindowFrameViewWin::GetMaximumSize() {
+gfx::Size GlassAppWindowFrameViewWin::GetMaximumSize() const {
gfx::Size max_size = widget_->client_view()->GetMaximumSize();
// Add to the client maximum size the height of any title bar and borders.

Powered by Google App Engine
This is Rietveld 408576698