| Index: third_party/WebKit/Source/core/page/Page.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/Page.cpp b/third_party/WebKit/Source/core/page/Page.cpp
|
| index b3d6d6d9f407fbada38c478af83506049147e535..502e2b0f3d31e653b865198d82a57ac3c6f66a3e 100644
|
| --- a/third_party/WebKit/Source/core/page/Page.cpp
|
| +++ b/third_party/WebKit/Source/core/page/Page.cpp
|
| @@ -34,7 +34,6 @@
|
| #include "core/frame/DOMTimer.h"
|
| #include "core/frame/EventHandlerRegistry.h"
|
| #include "core/frame/FrameConsole.h"
|
| -#include "core/frame/FrameHost.h"
|
| #include "core/frame/FrameView.h"
|
| #include "core/frame/PageScaleConstraints.h"
|
| #include "core/frame/PageScaleConstraintsSet.h"
|
| @@ -128,8 +127,7 @@ Page::Page(PageClients& pageClients)
|
| m_deviceScaleFactor(1),
|
| m_visibilityState(PageVisibilityStateVisible),
|
| m_isCursorVisible(true),
|
| - m_subframeCount(0),
|
| - m_frameHost(FrameHost::create(*this)) {
|
| + m_subframeCount(0) {
|
| ASSERT(m_editorClient);
|
|
|
| ASSERT(!allPages().contains(this));
|
| @@ -628,7 +626,6 @@ DEFINE_TRACE(Page) {
|
| visitor->trace(m_mainFrame);
|
| visitor->trace(m_validationMessageClient);
|
| visitor->trace(m_useCounter);
|
| - visitor->trace(m_frameHost);
|
| Supplementable<Page>::trace(visitor);
|
| PageVisibilityNotifier::trace(visitor);
|
| }
|
|
|