blob: dcc9c79c830c865c5efc974052becce6e0abcf04 (
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
|
// Copyright 2015 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/cdm_initialized_promise.h"
namespace media {
CdmInitializedPromise::CdmInitializedPromise(const CdmCreatedCB& cdm_created_cb,
scoped_ptr<MediaKeys> cdm)
: cdm_created_cb_(cdm_created_cb), cdm_(cdm.Pass()) {
}
CdmInitializedPromise::~CdmInitializedPromise() {
}
void CdmInitializedPromise::resolve() {
MarkPromiseSettled();
cdm_created_cb_.Run(cdm_.Pass(), "");
}
void CdmInitializedPromise::reject(MediaKeys::Exception exception_code,
uint32 system_code,
const std::string& error_message) {
MarkPromiseSettled();
cdm_created_cb_.Run(nullptr, error_message);
// Usually after this |this| (and the |cdm_| within it) will be destroyed.
}
} // namespace media
|