chromium/third_party/webrtc/test/pc/e2e/analyzer/video/dvqa/pausable_state.cc

/*
 *  Copyright (c) 2023 The WebRTC project authors. All Rights Reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "test/pc/e2e/analyzer/video/dvqa/pausable_state.h"

#include <cstdint>

#include "api/units/time_delta.h"
#include "api/units/timestamp.h"
#include "rtc_base/checks.h"

namespace webrtc {

void PausableState::Pause() {}

void PausableState::Resume() {}

bool PausableState::IsPaused() const {}

bool PausableState::WasPausedAt(Timestamp time) const {}

bool PausableState::WasResumedAfter(Timestamp time) const {}

Timestamp PausableState::GetLastEventTime() const {}

TimeDelta PausableState::GetActiveDurationFrom(Timestamp time) const {}

int64_t PausableState::GetPos(Timestamp time) const {}

}  // namespace webrtc