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

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

Issue 2636843003: Move most Feature Policy code into content/ (Closed)
Patch Set: Move usage of WebSecurityOrigin to content/child Created 3 years, 11 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/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 dfce6551911360c73671df76b692b549be74aa97..6d3c37f513ef4efdd0150b87a74c8b0e45515edc 100644
--- a/third_party/WebKit/Source/core/dom/SecurityContext.cpp
+++ b/third_party/WebKit/Source/core/dom/SecurityContext.cpp
@@ -29,6 +29,7 @@
#include "core/frame/csp/ContentSecurityPolicy.h"
#include "platform/RuntimeEnabledFeatures.h"
#include "platform/weborigin/SecurityOrigin.h"
+#include "public/platform/Platform.h"
namespace blink {
@@ -100,12 +101,14 @@ void SecurityContext::enforceSuborigin(const Suborigin& suborigin) {
}
void SecurityContext::setFeaturePolicyFromHeader(
- const WebParsedFeaturePolicy& parsedHeader,
- FeaturePolicy* parentFeaturePolicy) {
+ const WebParsedFeaturePolicyHeader& parsedHeader,
+ const WebFeaturePolicy* parentFeaturePolicy) {
DCHECK(!m_featurePolicy);
- m_featurePolicy = FeaturePolicy::createFromParentPolicy(parentFeaturePolicy,
- m_securityOrigin);
- m_featurePolicy->setHeaderPolicy(parsedHeader);
+
+ // Compose the new policy based on the parent policy, with the new header
+ WebSecurityOrigin origin = WebSecurityOrigin(m_securityOrigin);
+ m_featurePolicy.reset(Platform::current()->createFeaturePolicy(
+ parentFeaturePolicy, parsedHeader, origin));
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698