#ifndef ASH_PROJECTOR_PROJECTOR_UI_CONTROLLER_H_
#define ASH_PROJECTOR_PROJECTOR_UI_CONTROLLER_H_
#include "ash/ash_export.h"
#include "ash/projector/projector_metrics.h"
#include "ash/strings/grit/ash_strings.h"
#include "base/memory/raw_ptr.h"
namespace ash {
class ASH_EXPORT ProjectorUiController {
public:
static void ShowFailureNotification(
int message_id,
int title_id = IDS_ASH_PROJECTOR_FAILURE_TITLE);
static void ShowSaveFailureNotification();
ProjectorUiController();
ProjectorUiController(const ProjectorUiController&) = delete;
ProjectorUiController& operator=(const ProjectorUiController&) = delete;
~ProjectorUiController();
};
}
#endif