Sign in
chromium
/
chromium
/
src
/
refs/heads/main
/
.
/
components
/
cronet
/
license
/
license_type.py
blob: f31c2e6eb94c3e5d8a1e5a759055e2a6942a9f11 [
file
] [
log
] [
blame
] [
edit
]
from
enum
import
Enum
class
LicenseType
(
Enum
):
# The higher the value, the higher the restrictions.
UNKNOWN
=
0
,
UNENCUMBERED
=
1
,
PERMISSIVE
=
2
,
NOTICE
=
3
,
RECIPROCAL
=
4
,
RESTRICTED
=
5
,
BY_EXCEPTION_ONLY
=
6