forked from Pissandshittium/pissandshittium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcdm_result_promise_helper.h
51 lines (40 loc) · 1.79 KB
/
cdm_result_promise_helper.h
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
// 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.
#ifndef MEDIA_BLINK_CDM_RESULT_PROMISE_HELPER_H_
#define MEDIA_BLINK_CDM_RESULT_PROMISE_HELPER_H_
#include <string>
#include "base/time/time.h"
#include "media/base/cdm_key_information.h"
#include "media/base/cdm_promise.h"
#include "media/blink/media_blink_export.h"
#include "third_party/blink/public/platform/web_content_decryption_module_result.h"
namespace media {
// A superset of media::ContentDecryptionModule::Exception for UMA reporting.
// These values should never be changed as it will affect existing reporting,
// and must match the values for CdmPromiseResult in
// tools/metrics/histograms/enums.xml. Deprecated values should never be reused.
enum CdmResultForUMA {
SUCCESS = 0,
NOT_SUPPORTED_ERROR = 1,
INVALID_STATE_ERROR = 2,
TYPE_ERROR = 3,
QUOTA_EXCEEDED_ERROR = 4,
// UNKNOWN_ERROR = 5, // Deprecated.
// CLIENT_ERROR = 6, // Deprecated.
// OUTPUT_ERROR = 7, // Deprecated.
SESSION_NOT_FOUND = 8,
SESSION_ALREADY_EXISTS = 9,
NUM_RESULT_CODES // Must be last.
};
MEDIA_BLINK_EXPORT CdmResultForUMA
ConvertCdmExceptionToResultForUMA(CdmPromise::Exception exception_code);
MEDIA_BLINK_EXPORT blink::WebContentDecryptionModuleException
ConvertCdmException(CdmPromise::Exception exception_code);
MEDIA_BLINK_EXPORT blink::WebEncryptedMediaKeyInformation::KeyStatus
ConvertCdmKeyStatus(media::CdmKeyInformation::KeyStatus key_status);
MEDIA_BLINK_EXPORT void ReportCdmResultUMA(const std::string& uma_name,
uint32_t system_code,
CdmResultForUMA result);
} // namespace media
#endif // MEDIA_BLINK_CDM_RESULT_PROMISE_HELPER_H_