| Index: ash/system/chromeos/power/power_status_view.cc
|
| diff --git a/ash/system/chromeos/power/power_status_view.cc b/ash/system/chromeos/power/power_status_view.cc
|
| index dbcf1e1ce77a0bfbe68ec413a002907327fb634f..058ac08f35208af3d8c260c98c0ab19dad772245 100644
|
| --- a/ash/system/chromeos/power/power_status_view.cc
|
| +++ b/ash/system/chromeos/power/power_status_view.cc
|
| @@ -22,7 +22,6 @@
|
| #include "ui/views/layout/grid_layout.h"
|
|
|
| namespace ash {
|
| -namespace internal {
|
|
|
| // Padding between battery status text and battery icon on default view.
|
| const int kPaddingBetweenBatteryStatusAndIcon = 3;
|
| @@ -84,8 +83,7 @@ void PowerStatusView::LayoutDefaultView() {
|
| kTrayPopupPaddingBetweenItems);
|
| SetLayoutManager(layout);
|
|
|
| - icon_ =
|
| - new ash::internal::FixedSizedImageView(0, ash::kTrayPopupItemHeight);
|
| + icon_ = new ash::FixedSizedImageView(0, ash::kTrayPopupItemHeight);
|
| AddChildView(icon_);
|
|
|
| AddChildView(percentage_label_);
|
| @@ -218,5 +216,4 @@ void PowerStatusView::Layout() {
|
| }
|
| }
|
|
|
| -} // namespace internal
|
| } // namespace ash
|
|
|