chromium/content/public/test/media_start_stop_observer.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/public/test/media_start_stop_observer.h"

namespace content {

MediaStartStopObserver::MediaStartStopObserver(WebContents* web_contents,
                                               Type type)
    :{}

MediaStartStopObserver::~MediaStartStopObserver() = default;

void MediaStartStopObserver::MediaStartedPlaying(const MediaPlayerInfo& info,
                                                 const MediaPlayerId& id) {}

void MediaStartStopObserver::MediaPictureInPictureChanged(
    bool is_picture_in_picture) {}

void MediaStartStopObserver::MediaStoppedPlaying(
    const MediaPlayerInfo& info,
    const MediaPlayerId& id,
    WebContentsObserver::MediaStoppedReason reason) {}

void MediaStartStopObserver::Wait() {}

}  // namespace content