blob: e7026aadc13f120c7fd59745ce73e7b5a7da89c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// 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"
#include "base/logging.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;
}
KeySystemInfoForUMA::KeySystemInfoForUMA(
const std::string& key_system,
const std::string& key_system_name_for_uma)
: key_system(key_system),
key_system_name_for_uma(key_system_name_for_uma) {}
KeySystemInfoForUMA::~KeySystemInfoForUMA() {
}
MediaClient::MediaClient() {
}
MediaClient::~MediaClient() {
}
} // namespace media
|