blob: f427d4185443f1301df6aab13f964947e953f740 [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef ASH_SYSTEM_TRAY_TRAY_EMPTY_H_
#define ASH_SYSTEM_TRAY_TRAY_EMPTY_H_
#include "ash/system/tray/system_tray_item.h"
namespace ash {
class TrayEmpty : public SystemTrayItem {
public:
explicit TrayEmpty(SystemTray* system_tray);
~TrayEmpty() override;
private:
// Overridden from SystemTrayItem.
views::View* CreateTrayView(user::LoginStatus status) override;
views::View* CreateDefaultView(user::LoginStatus status) override;
views::View* CreateDetailedView(user::LoginStatus status) override;
void DestroyTrayView() override;
void DestroyDefaultView() override;
void DestroyDetailedView() override;
void UpdateAfterLoginStatusChange(user::LoginStatus status) override;
DISALLOW_COPY_AND_ASSIGN(TrayEmpty);
};
} // namespace ash
#endif // ASH_SYSTEM_TRAY_TRAY_EMPTY_H_