blob: 60c1e6895e5cceea5feb863b6b708b674b7b203c [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/system/status_area_widget_test_helper.h"
#include "ash/root_window_controller.h"
#include "ash/session/session_controller.h"
#include "ash/shell.h"
#include "ash/system/status_area_widget.h"
namespace ash {
LoginStatus StatusAreaWidgetTestHelper::GetUserLoginStatus() {
return Shell::Get()->session_controller()->login_status();
}
StatusAreaWidget* StatusAreaWidgetTestHelper::GetStatusAreaWidget() {
return Shell::GetPrimaryRootWindowController()->GetStatusAreaWidget();
}
StatusAreaWidget* StatusAreaWidgetTestHelper::GetSecondaryStatusAreaWidget() {
RootWindowController* primary_controller =
Shell::GetPrimaryRootWindowController();
Shell::RootWindowControllerList controllers =
Shell::GetAllRootWindowControllers();
for (size_t i = 0; i < controllers.size(); ++i) {
if (controllers[i] != primary_controller)
return controllers[i]->GetStatusAreaWidget();
}
return nullptr;
}
} // namespace ash