Clean-up: Fixes style issues.

This CL addresses the remaining comments at http://crrev.com/121183002 .

TEST=none

Review URL: https://codereview.chromium.org/114033005

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243534 0039d316-1c4b-4281-b951-d872f2087c98
parent fd51b8b0
......@@ -398,12 +398,11 @@ class LoadingAnimationView : public views::View,
ui::ResourceBundle::LargeFont);
animation_.reset(new LoadingAnimation(this, font_list.GetHeight()));
views::Label* label = new views::Label(text, font_list);
container_->AddChildView(label);
container_->AddChildView(new views::Label(text, font_list));
for (size_t i = 0; i < 3; ++i) {
views::Label* dot = new views::Label(base::ASCIIToUTF16("."), font_list);
container_->AddChildView(dot);
container_->AddChildView(
new views::Label(base::ASCIIToUTF16("."), font_list));
}
OnNativeThemeChanged(GetNativeTheme());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment