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

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

Issue 2378643002: Propagating csp attribute changes on frameOwnerPropertiesChanged() (Closed)
Patch Set: rebasing on master Created 4 years, 2 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
« no previous file with comments | « third_party/WebKit/Source/web/RemoteFrameOwner.h ('k') | third_party/WebKit/Source/web/WebFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/web/RemoteFrameOwner.cpp
diff --git a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
index e0b964440ae4485c44043267d9b93726b2ca1e13..d2d62aee744dac712b4c06ccdb3433009821f2a7 100644
--- a/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
+++ b/third_party/WebKit/Source/web/RemoteFrameOwner.cpp
@@ -18,7 +18,8 @@ RemoteFrameOwner::RemoteFrameOwner(
static_cast<ScrollbarMode>(frameOwnerProperties.scrollingMode)),
m_marginWidth(frameOwnerProperties.marginWidth),
m_marginHeight(frameOwnerProperties.marginHeight),
- m_allowFullscreen(frameOwnerProperties.allowFullscreen) {}
+ m_allowFullscreen(frameOwnerProperties.allowFullscreen),
+ m_csp(frameOwnerProperties.requiredCsp) {}
DEFINE_TRACE(RemoteFrameOwner) {
visitor->trace(m_frame);
« no previous file with comments | « third_party/WebKit/Source/web/RemoteFrameOwner.h ('k') | third_party/WebKit/Source/web/WebFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698