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

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

Issue 2394473002: iframes with allowpaymentrequest attribute are allowed to make payment requests. (Closed)
Patch Set: 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
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..171195f97399d0d1e08a8c15b2fe72cbcfa4f5d2 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_allowPaymentRequest(frameOwnerProperties.allowPaymentRequest) {}
DEFINE_TRACE(RemoteFrameOwner) {
visitor->trace(m_frame);

Powered by Google App Engine
This is Rietveld 408576698