| Index: third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| diff --git a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| index 2c1524b974337f6e1c9fa45fb8be4944904bdb6f..86b77badc9da2a4f5d97468a699d1dd2f5ae1758 100644
|
| --- a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| +++ b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
|
| @@ -291,11 +291,11 @@ bool FeaturePolicy::isFeatureEnabledForOrigin(
|
| const FeaturePolicy::Feature& feature,
|
| const SecurityOrigin& origin) const {
|
| DCHECK(m_inheritedFeatures.contains(&feature));
|
| - if (!m_inheritedFeatures.get(&feature)) {
|
| + if (!m_inheritedFeatures.at(&feature)) {
|
| return false;
|
| }
|
| if (m_headerWhitelists.contains(&feature)) {
|
| - return m_headerWhitelists.get(&feature)->contains(origin);
|
| + return m_headerWhitelists.at(&feature)->contains(origin);
|
| }
|
| if (feature.defaultPolicy == FeaturePolicy::FeatureDefault::EnableForAll) {
|
| return true;
|
|
|