OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "media/base/android/media_drm_bridge_delegate.h" | |
6 | |
7 namespace media { | |
8 | |
9 MediaDrmBridgeDelegate::MediaDrmBridgeDelegate() { | |
10 } | |
11 | |
12 MediaDrmBridgeDelegate::~MediaDrmBridgeDelegate() { | |
13 } | |
14 | |
15 bool MediaDrmBridgeDelegate::OnCreateSession( | |
16 const EmeInitDataType init_data_type, | |
17 const uint8_t* init_data, | |
18 int init_data_length, | |
19 std::vector<uint8_t>& init_data_out, | |
20 std::vector<std::string>& optional_parameters_out) { | |
21 return true; | |
xhwang
2015/04/24 04:52:24
DCHECK(init_data_out->empty())
gunsch
2015/04/27 23:44:12
Done.
| |
22 } | |
23 | |
24 } // namespace media | |
OLD | NEW |