blob: 3e54a2e392a43ae276d661231978616361261c6f [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/base/media_client.h"
namespace media {
static MediaClient* g_media_client = nullptr;
void SetMediaClient(MediaClient* media_client) {
g_media_client = media_client;
}
MediaClient* GetMediaClient() {
return g_media_client;
}
MediaClient::MediaClient() = default;
MediaClient::~MediaClient() = default;
} // namespace media