| Index: ui/views/window/client_view.cc
|
| diff --git a/ui/views/window/client_view.cc b/ui/views/window/client_view.cc
|
| index eb8d355c6e83e8bdbee8cd0a1ba3d830d69b5870..fb7d89fed1823b670feb600d00685f1e83f4526a 100644
|
| --- a/ui/views/window/client_view.cc
|
| +++ b/ui/views/window/client_view.cc
|
| @@ -51,7 +51,7 @@ gfx::Size ClientView::GetPreferredSize() const {
|
| return contents_view_ ? contents_view_->GetPreferredSize() : gfx::Size();
|
| }
|
|
|
| -gfx::Size ClientView::GetMaximumSize() {
|
| +gfx::Size ClientView::GetMaximumSize() const {
|
| // |contents_view_| is allowed to be NULL up until the point where this view
|
| // is attached to a Container.
|
| return contents_view_ ? contents_view_->GetMaximumSize() : gfx::Size();
|
|
|