| Index: third_party/WebKit/Source/core/frame/Frame.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/Frame.cpp b/third_party/WebKit/Source/core/frame/Frame.cpp
|
| index ee808e44264357eee823f4730d57dec70325e023..a9f6ff2c0167cb2675c6787376991297a850e0c6 100644
|
| --- a/third_party/WebKit/Source/core/frame/Frame.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/Frame.cpp
|
| @@ -48,6 +48,7 @@
|
| #include "core/page/Page.h"
|
| #include "platform/Histogram.h"
|
| #include "platform/UserGestureIndicator.h"
|
| +#include "platform/feature_policy/FeaturePolicy.h"
|
|
|
| namespace blink {
|
|
|
| @@ -65,6 +66,7 @@ DEFINE_TRACE(Frame)
|
| visitor->trace(m_host);
|
| visitor->trace(m_owner);
|
| visitor->trace(m_client);
|
| + visitor->trace(m_featurePolicy);
|
| }
|
|
|
| void Frame::detach(FrameDetachType type)
|
| @@ -313,6 +315,7 @@ Frame::Frame(FrameClient* client, FrameHost* host, FrameOwner* owner)
|
| , m_owner(owner)
|
| , m_client(client)
|
| , m_isLoading(false)
|
| + , m_featurePolicy(nullptr)
|
| {
|
| InstanceCounters::incrementCounter(InstanceCounters::FrameCounter);
|
|
|
|
|