Home | History | Annotate | Download | only in window

Lines Matching refs:contents_view_

23     : contents_view_(contents_view) {
49 // |contents_view_| is allowed to be NULL up until the point where this view
51 return contents_view_ ? contents_view_->GetPreferredSize() : gfx::Size();
55 // |contents_view_| is allowed to be NULL up until the point where this view
57 return contents_view_ ? contents_view_->GetMaximumSize() : gfx::Size();
61 // |contents_view_| is allowed to be NULL up until the point where this view
63 return contents_view_ ? contents_view_->GetMinimumSize() : gfx::Size();
67 // |contents_view_| is allowed to be NULL up until the point where this view
69 if (contents_view_)
70 contents_view_->SetBounds(0, 0, width(), height());
91 DCHECK(contents_view_); // |contents_view_| must be valid now!
92 // Insert |contents_view_| at index 0 so it is first in the focus chain.
93 // (the OK/Cancel buttons are inserted before contents_view_)
94 AddChildViewAt(contents_view_, 0);