| Index: third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| index 6db3efa66c6950eb0f032698c32d1cdd15168eb5..6d4a582b88b80b884be49791f3432eb672023ec3 100644
|
| --- a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
|
| @@ -3,8 +3,8 @@
|
| // found in the LICENSE file.
|
|
|
| #include "core/frame/Deprecation.h"
|
| -#include "core/frame/FrameHost.h"
|
| #include "core/frame/UseCounter.h"
|
| +#include "core/page/Page.h"
|
| #include "core/testing/DummyPageHolder.h"
|
| #include "platform/testing/HistogramTester.h"
|
| #include "platform/testing/URLTestHelpers.h"
|
| @@ -352,8 +352,8 @@ class DeprecationTest : public ::testing::Test {
|
| public:
|
| DeprecationTest()
|
| : m_dummy(DummyPageHolder::create()),
|
| - m_deprecation(m_dummy->page().frameHost().deprecation()),
|
| - m_useCounter(m_dummy->page().frameHost().useCounter()) {}
|
| + m_deprecation(m_dummy->page().deprecation()),
|
| + m_useCounter(m_dummy->page().useCounter()) {}
|
|
|
| protected:
|
| LocalFrame* frame() { return &m_dummy->frame(); }
|
|
|