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

Unified Diff: chrome/browser/chromeos/login/new_user_view.cc

Issue 6452011: Rework tree APIs to reflect Google style and more const-correctness.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/chromeos/login/new_user_view.cc
===================================================================
--- chrome/browser/chromeos/login/new_user_view.cc (revision 74231)
+++ chrome/browser/chromeos/login/new_user_view.cc (working copy)
@@ -265,14 +265,14 @@
// so we restore their original position in layout.
if (view == languages_menubutton_) {
if (languages_menubutton_order_ < 0) {
- languages_menubutton_order_ = GetChildViewCount();
+ languages_menubutton_order_ = child_count();
}
- views::View::AddChildView(languages_menubutton_order_, view);
+ views::View::AddChildViewAt(view, languages_menubutton_order_);
} else if (view == sign_in_button_) {
if (sign_in_button_order_ < 0) {
- sign_in_button_order_ = GetChildViewCount();
+ sign_in_button_order_ = child_count();
}
- views::View::AddChildView(sign_in_button_order_, view);
+ views::View::AddChildViewAt(view, sign_in_button_order_);
} else {
views::View::AddChildView(view);
}
« no previous file with comments | « chrome/browser/chromeos/login/network_selection_view.cc ('k') | chrome/browser/chromeos/login/screen_locker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698