2023-12-01 17:32:19 +00:00
|
|
|
// Copyright 2023 Google LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file or at
|
|
|
|
// https://developers.google.com/open-source/licenses/bsd
|
|
|
|
|
|
|
|
#include <packager/mpd/base/mock_mpd_notifier.h>
|
2015-09-14 19:53:32 +00:00
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
namespace shaka {
|
2015-09-14 19:53:32 +00:00
|
|
|
|
2016-12-21 23:28:56 +00:00
|
|
|
MockMpdNotifier::MockMpdNotifier(const MpdOptions& mpd_options)
|
|
|
|
: MpdNotifier(mpd_options) {}
|
2015-09-14 19:53:32 +00:00
|
|
|
MockMpdNotifier::~MockMpdNotifier() {}
|
|
|
|
|
2016-05-20 21:19:33 +00:00
|
|
|
} // namespace shaka
|