/* * Copyright (c) 2025-2026, Gregory Bertilson * * SPDX-License-Identifier: BSD-2-Clause */ #include "ResumingStateHandler.h" #include #include #include namespace Media { void ResumingStateHandler::resume() { if (m_playing) manager().replace_state_handler(); else manager().replace_state_handler(PlaybackManager::RESUMING_SUSPEND_TIMEOUT_MS); } }