Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(673)

Unified Diff: third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp

Issue 2727803004: Replace string by enum in WebParsedFeaturePolicyDeclaration#feature (Closed)
Patch Set: Filter out unrecognized features in parseFeaturePolicy (earlier) instead of setHeaderPolicy Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 9b8a0578467160ba1737dfa649a9bfbbe79b4064..f6cc6b7fa9776b6cb1587e9fa85aad20ee688457 100644
--- a/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
+++ b/third_party/WebKit/Source/platform/feature_policy/FeaturePolicy.cpp
@@ -71,7 +71,9 @@ WebParsedFeaturePolicyHeader parseFeaturePolicy(const String& policy,
for (size_t j = 0; j < item->size(); ++j) {
JSONObject::Entry entry = item->at(j);
- String featureName = entry.first;
+ WebFeaturePolicyFeature feature = getWebFeaturePolicyFeature(entry.first);
+ if (feature == WebFeaturePolicyFeature::NotFound)
+ continue;
JSONArray* targets = JSONArray::cast(entry.second);
if (!targets) {
if (messages)
@@ -80,7 +82,7 @@ WebParsedFeaturePolicyHeader parseFeaturePolicy(const String& policy,
}
WebParsedFeaturePolicyDeclaration whitelist;
- whitelist.featureName = featureName;
+ whitelist.feature = feature;
Vector<WebSecurityOrigin> origins;
String targetString;
for (size_t j = 0; j < targets->size(); ++j) {

Powered by Google App Engine
This is Rietveld 408576698