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

Unified Diff: third_party/WebKit/Source/core/dom/SecurityContext.cpp

Issue 2520223002: Replicate a parsed feature policy representation so it doesn't need to be parsed in the browser pro… (Closed)
Patch Set: Replicate a parsed feature policy representation so it doesn't need to be parsed in the browser pro… Created 4 years 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/core/dom/SecurityContext.cpp
diff --git a/third_party/WebKit/Source/core/dom/SecurityContext.cpp b/third_party/WebKit/Source/core/dom/SecurityContext.cpp
index 4a6c560ea063a533526c0d43ba2c9914f5621d33..dfce6551911360c73671df76b692b549be74aa97 100644
--- a/third_party/WebKit/Source/core/dom/SecurityContext.cpp
+++ b/third_party/WebKit/Source/core/dom/SecurityContext.cpp
@@ -100,13 +100,12 @@ void SecurityContext::enforceSuborigin(const Suborigin& suborigin) {
}
void SecurityContext::setFeaturePolicyFromHeader(
- const String& headerValue,
- FeaturePolicy* parentFeaturePolicy,
- Vector<String>* messages) {
+ const WebParsedFeaturePolicy& parsedHeader,
+ FeaturePolicy* parentFeaturePolicy) {
DCHECK(!m_featurePolicy);
m_featurePolicy = FeaturePolicy::createFromParentPolicy(parentFeaturePolicy,
m_securityOrigin);
- m_featurePolicy->setHeaderPolicy(headerValue, messages);
+ m_featurePolicy->setHeaderPolicy(parsedHeader);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698