| Index: third_party/WebKit/Source/core/frame/Frame.h
|
| diff --git a/third_party/WebKit/Source/core/frame/Frame.h b/third_party/WebKit/Source/core/frame/Frame.h
|
| index 712ce2a1c7d27538430a4a5148bc7d9e3ecd5e88..098c6031594dbe2b41733332d83c1e893f2900d5 100644
|
| --- a/third_party/WebKit/Source/core/frame/Frame.h
|
| +++ b/third_party/WebKit/Source/core/frame/Frame.h
|
| @@ -37,8 +37,6 @@
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Forward.h"
|
|
|
| -#include <memory>
|
| -
|
| namespace blink {
|
|
|
| class ChromeClient;
|
| @@ -114,11 +112,6 @@ class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> {
|
|
|
| virtual SecurityContext* securityContext() const = 0;
|
|
|
| - FeaturePolicy* getFeaturePolicy() const { return m_featurePolicy.get(); }
|
| - void setFeaturePolicy(std::unique_ptr<FeaturePolicy> newPolicy) {
|
| - m_featurePolicy = std::move(newPolicy);
|
| - }
|
| -
|
| Frame* findFrameForNavigation(const AtomicString& name, Frame& activeFrame);
|
| Frame* findUnsafeParentScrollPropagationBoundary();
|
|
|
| @@ -168,8 +161,6 @@ class CORE_EXPORT Frame : public GarbageCollectedFinalized<Frame> {
|
|
|
| Member<FrameClient> m_client;
|
| bool m_isLoading;
|
| -
|
| - std::unique_ptr<FeaturePolicy> m_featurePolicy;
|
| };
|
|
|
| inline FrameClient* Frame::client() const {
|
|
|