Chromium Code Reviews| 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 299e4b1da6900db3fc45ed4a10c1fe5a68ce3846..73b101a784e2dc620578581e74bb2fd71940ce45 100644 |
| --- a/third_party/WebKit/Source/core/frame/Frame.cpp |
| +++ b/third_party/WebKit/Source/core/frame/Frame.cpp |
| @@ -49,6 +49,7 @@ |
| #include "platform/Histogram.h" |
| #include "platform/InstanceCounters.h" |
| #include "platform/UserGestureIndicator.h" |
| +#include "platform/feature_policy/FeaturePolicy.h" |
| namespace blink { |
| @@ -325,7 +326,8 @@ Frame::Frame(FrameClient* client, FrameHost* host, FrameOwner* owner) |
| m_host(host), |
| m_owner(owner), |
| m_client(client), |
| - m_isLoading(false) { |
| + m_isLoading(false), |
| + m_featurePolicy(nullptr) { |
|
dcheng
2016/11/03 05:54:43
Nit: this can just be default initialized.
iclelland
2016/11/03 14:59:20
Done.
|
| InstanceCounters::incrementCounter(InstanceCounters::FrameCounter); |
| ASSERT(page()); |