blob: 723a5095614ce7b8d900bce9b12e43c4d14ae75b [file] [log] [blame]
// Copyright 2021 The Chromium OS 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 RMAD_STATE_HANDLER_WELCOME_SCREEN_STATE_HANDLER_H_
#define RMAD_STATE_HANDLER_WELCOME_SCREEN_STATE_HANDLER_H_
#include "rmad/state_handler/base_state_handler.h"
namespace rmad {
class WelcomeScreenStateHandler : public BaseStateHandler {
public:
explicit WelcomeScreenStateHandler(scoped_refptr<JsonStore> json_store);
~WelcomeScreenStateHandler() override = default;
ASSIGN_STATE(RMAD_STATE_WELCOME_SCREEN);
SET_ALLOW_ABORT;
bool GetNextState(RmadState* next_state) const override;
};
} // namespace rmad
#endif // RMAD_STATE_HANDLER_WELCOME_SCREEN_STATE_HANDLER_H_