| Index: ash/system/status_area_widget.cc
|
| diff --git a/ash/system/status_area_widget.cc b/ash/system/status_area_widget.cc
|
| index 8095fd99227f9cd43ce341b84e90865d88d7a9b8..f0726e0b9dc9b3a31e32005d375b9b823de06b22 100644
|
| --- a/ash/system/status_area_widget.cc
|
| +++ b/ash/system/status_area_widget.cc
|
| @@ -27,8 +27,6 @@
|
|
|
| namespace ash {
|
|
|
| -const char StatusAreaWidget::kNativeViewName[] = "StatusAreaWidget";
|
| -
|
| StatusAreaWidget::StatusAreaWidget(aura::Window* status_container,
|
| ShelfWidget* shelf_widget)
|
| : status_area_widget_delegate_(new StatusAreaWidgetDelegate),
|
| @@ -44,12 +42,12 @@ StatusAreaWidget::StatusAreaWidget(aura::Window* status_container,
|
| views::Widget::InitParams params(
|
| views::Widget::InitParams::TYPE_WINDOW_FRAMELESS);
|
| params.delegate = status_area_widget_delegate_;
|
| + params.name = "StatusAreaWidget";
|
| params.parent = status_container;
|
| params.opacity = views::Widget::InitParams::TRANSLUCENT_WINDOW;
|
| Init(params);
|
| set_focus_on_creation(false);
|
| SetContentsView(status_area_widget_delegate_);
|
| - GetNativeView()->SetName(kNativeViewName);
|
| }
|
|
|
| StatusAreaWidget::~StatusAreaWidget() {
|
|
|