#ifndef ASH_SESSION_SESSION_ABORTED_DIALOG_H_
#define ASH_SESSION_SESSION_ABORTED_DIALOG_H_
#include <string>
#include "ui/views/window/dialog_delegate.h"
namespace ash {
class SessionAbortedDialog : public views::DialogDelegateView {
public:
static void Show(const std::string& user_email);
SessionAbortedDialog(const SessionAbortedDialog&) = delete;
SessionAbortedDialog& operator=(const SessionAbortedDialog&) = delete;
gfx::Size CalculatePreferredSize(
const views::SizeBounds& available_size) const override;
private:
SessionAbortedDialog();
~SessionAbortedDialog() override;
void InitDialog(const std::string& user_email);
};
}
#endif