blob: 20f2d6f644cf9318b6a047e55faf9f68f5d642fc (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
// Copyright 2013 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 "content/renderer/media/webinbandtexttrack_impl.h"
#include "base/logging.h"
namespace content {
WebInbandTextTrackImpl::WebInbandTextTrackImpl(
Kind kind,
const blink::WebString& label,
const blink::WebString& language,
int index)
: client_(NULL),
kind_(kind),
label_(label),
language_(language),
index_(index) {
}
WebInbandTextTrackImpl::~WebInbandTextTrackImpl() {
DCHECK(!client_);
}
void WebInbandTextTrackImpl::setClient(
blink::WebInbandTextTrackClient* client) {
client_ = client;
}
blink::WebInbandTextTrackClient* WebInbandTextTrackImpl::client() {
return client_;
}
WebInbandTextTrackImpl::Kind WebInbandTextTrackImpl::kind() const {
return kind_;
}
blink::WebString WebInbandTextTrackImpl::label() const {
return label_;
}
blink::WebString WebInbandTextTrackImpl::language() const {
return language_;
}
int WebInbandTextTrackImpl::textTrackIndex() const {
return index_;
}
} // namespace content
|