blob: 0a07614dc0a789e758e46d3c6ec6a179461460f9 (
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
|
// 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/blink/new_session_cdm_result_promise.h"
#include "base/logging.h"
#include "media/blink/cdm_result_promise_helper.h"
#include "third_party/WebKit/public/platform/WebString.h"
namespace media {
NewSessionCdmResultPromise::NewSessionCdmResultPromise(
const blink::WebContentDecryptionModuleResult& result,
const std::string& uma_name,
const SessionInitializedCB& new_session_created_cb)
: web_cdm_result_(result),
uma_name_(uma_name),
new_session_created_cb_(new_session_created_cb) {
}
NewSessionCdmResultPromise::~NewSessionCdmResultPromise() {
}
void NewSessionCdmResultPromise::resolve(const std::string& session_id) {
MarkPromiseSettled();
ReportCdmResultUMA(uma_name_, SUCCESS);
blink::WebContentDecryptionModuleResult::SessionStatus status =
new_session_created_cb_.Run(session_id);
web_cdm_result_.completeWithSession(status);
}
void NewSessionCdmResultPromise::reject(MediaKeys::Exception exception_code,
uint32 system_code,
const std::string& error_message) {
MarkPromiseSettled();
ReportCdmResultUMA(uma_name_,
ConvertCdmExceptionToResultForUMA(exception_code));
web_cdm_result_.completeWithError(ConvertCdmException(exception_code),
system_code,
blink::WebString::fromUTF8(error_message));
}
} // namespace media
|