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

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

Issue 2738953002: Rename WebParsedFeaturePolicyHeader to WebParsedFeaturePolicy (Closed)
Patch Set: ParsedFeaturePolicyHeader => ParsedFeaturePolicy (content version) 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/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 19cdd87bc49c1248fdce2ca1001675fe92811451..b4c89ae0d116cd08d630aaed42cf2490554b5df5 100644
--- a/third_party/WebKit/Source/core/dom/SecurityContext.cpp
+++ b/third_party/WebKit/Source/core/dom/SecurityContext.cpp
@@ -102,12 +102,12 @@ void SecurityContext::enforceSuborigin(const Suborigin& suborigin) {
}
void SecurityContext::initializeFeaturePolicy(
- const WebParsedFeaturePolicyHeader& parsedHeader,
+ const WebParsedFeaturePolicy& parsedHeader,
const WebFeaturePolicy* parentFeaturePolicy) {
DCHECK(!m_featurePolicy);
// TODO(iclelland): Use the frame owner properties here to pass the frame
// policy, if it exists.
- WebParsedFeaturePolicyHeader containerPolicy;
+ WebParsedFeaturePolicy containerPolicy;
WebSecurityOrigin origin = WebSecurityOrigin(m_securityOrigin);
m_featurePolicy.reset(Platform::current()->createFeaturePolicy(
parentFeaturePolicy, containerPolicy, parsedHeader, origin));
« no previous file with comments | « third_party/WebKit/Source/core/dom/SecurityContext.h ('k') | third_party/WebKit/Source/core/frame/LocalFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698