| Index: third_party/WebKit/Source/core/page/Page.h
|
| diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h
|
| index 676c71e77e29e5338abb4049185c09ee02492e00..efb2332c1a7de40e4ebc8d45738d4e77f8972829 100644
|
| --- a/third_party/WebKit/Source/core/page/Page.h
|
| +++ b/third_party/WebKit/Source/core/page/Page.h
|
| @@ -59,7 +59,6 @@ class EditorClient;
|
| class EventHandlerRegistry;
|
| class FocusController;
|
| class Frame;
|
| -class FrameHost;
|
| class OverscrollController;
|
| struct PageScaleConstraints;
|
| class PageScaleConstraintsSet;
|
| @@ -127,9 +126,6 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
|
|
|
| static void platformColorsChanged();
|
|
|
| - // TODO(sashab): Remove this.
|
| - FrameHost& frameHost() const { return *m_frameHost; }
|
| -
|
| void setNeedsRecalcStyleInAllFrames();
|
| void updateAcceleratedCompositingSettings();
|
|
|
| @@ -360,11 +356,6 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
|
| #endif
|
|
|
| int m_subframeCount;
|
| -
|
| - // A pointer to all the interfaces provided to in-process Frames for this
|
| - // Page.
|
| - // FIXME: Most of the members of Page should move onto FrameHost.
|
| - Member<FrameHost> m_frameHost;
|
| };
|
|
|
| extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>;
|
|
|