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

Unified Diff: third_party/WebKit/Source/web/LocalFrameClientImpl.cpp

Issue 2797813002: Replicate feature policy container policies. (Closed)
Patch Set: Update pending container policy more often; add test Created 3 years, 8 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/web/LocalFrameClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
index dae4eb51a73c00cc43ede696a2bc357ec13dabab..e816eeae9742e31af08a76b0fe43ee3d41b4ac38 100644
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
@@ -71,6 +71,7 @@
#include "platform/UserGestureIndicator.h"
#include "platform/exported/WrappedResourceRequest.h"
#include "platform/exported/WrappedResourceResponse.h"
+#include "platform/feature_policy/FeaturePolicy.h"
#include "platform/network/HTTPParsers.h"
#include "platform/network/mime/MIMETypeRegistry.h"
#include "platform/plugins/PluginData.h"
@@ -844,12 +845,15 @@ void LocalFrameClientImpl::DidUpdateToUniqueOrigin() {
web_frame_->GetSecurityOrigin().IsPotentiallyTrustworthy());
}
-void LocalFrameClientImpl::DidChangeSandboxFlags(Frame* child_frame,
- SandboxFlags flags) {
+void LocalFrameClientImpl::DidChangeFramePolicy(
+ Frame* child_frame,
+ SandboxFlags flags,
+ const WebParsedFeaturePolicy& container_policy) {
if (!web_frame_->Client())
return;
- web_frame_->Client()->DidChangeSandboxFlags(
- WebFrame::FromFrame(child_frame), static_cast<WebSandboxFlags>(flags));
+ web_frame_->Client()->DidChangeFramePolicy(
+ WebFrame::FromFrame(child_frame), static_cast<WebSandboxFlags>(flags),
+ container_policy);
}
void LocalFrameClientImpl::DidSetFeaturePolicyHeader(

Powered by Google App Engine
This is Rietveld 408576698