summaryrefslogtreecommitdiff
path: root/chromium/media/base/cdm_initialized_promise.cc
blob: 8c36e0b174794bfa796013f32cdeef8aa217fbf4 (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
// 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(
    CdmCreatedCB cdm_created_cb,
    scoped_refptr<ContentDecryptionModule> cdm)
    : cdm_created_cb_(std::move(cdm_created_cb)), cdm_(std::move(cdm)) {}

CdmInitializedPromise::~CdmInitializedPromise() = default;

void CdmInitializedPromise::resolve() {
  MarkPromiseSettled();
  std::move(cdm_created_cb_).Run(cdm_, "");
}

void CdmInitializedPromise::reject(CdmPromise::Exception exception_code,
                                   uint32_t system_code,
                                   const std::string& error_message) {
  MarkPromiseSettled();
  std::move(cdm_created_cb_).Run(nullptr, error_message);
  // Usually after this |this| (and the |cdm_| within it) will be destroyed.
}

}  // namespace media