Index: views/layout/fill_layout.cc |
=================================================================== |
--- views/layout/fill_layout.cc (revision 92600) |
+++ views/layout/fill_layout.cc (working copy) |
@@ -18,13 +18,13 @@ |
if (!host->has_children()) |
return; |
- View* frame_view = host->GetChildViewAt(0); |
+ View* frame_view = host->child_at(0); |
frame_view->SetBounds(0, 0, host->width(), host->height()); |
} |
gfx::Size FillLayout::GetPreferredSize(View* host) { |
DCHECK_EQ(1, host->child_count()); |
- return host->GetChildViewAt(0)->GetPreferredSize(); |
+ return host->child_at(0)->GetPreferredSize(); |
} |
} // namespace views |