Index: chrome/browser/ui/views/bookmarks/bookmark_bar_instructions_view.cc |
=================================================================== |
--- chrome/browser/ui/views/bookmarks/bookmark_bar_instructions_view.cc (revision 92366) |
+++ chrome/browser/ui/views/bookmarks/bookmark_bar_instructions_view.cc (working copy) |
@@ -42,7 +42,7 @@ |
gfx::Size BookmarkBarInstructionsView::GetPreferredSize() { |
int ascent = 0, descent = 0, height = 0, width = 0; |
for (int i = 0; i < child_count(); ++i) { |
- views::View* view = GetChildViewAt(i); |
+ views::View* view = child_at(i); |
gfx::Size pref = view->GetPreferredSize(); |
int baseline = view->GetBaseline(); |
if (baseline != -1) { |
@@ -63,7 +63,7 @@ |
int remaining_width = width(); |
int x = 0; |
for (int i = 0; i < child_count(); ++i) { |
- views::View* view = GetChildViewAt(i); |
+ views::View* view = child_at(i); |
gfx::Size pref = view->GetPreferredSize(); |
int baseline = view->GetBaseline(); |
int y; |