| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef LayoutTestHelper_h | 5 #ifndef LayoutTestHelper_h |
| 6 #define LayoutTestHelper_h | 6 #define LayoutTestHelper_h |
| 7 | 7 |
| 8 #include <gtest/gtest.h> | 8 #include <gtest/gtest.h> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "core/dom/Document.h" | 11 #include "core/dom/Document.h" |
| 12 #include "core/frame/FrameHost.h" | |
| 13 #include "core/frame/FrameView.h" | 12 #include "core/frame/FrameView.h" |
| 14 #include "core/frame/LocalFrameClient.h" | 13 #include "core/frame/LocalFrameClient.h" |
| 15 #include "core/frame/Settings.h" | 14 #include "core/frame/Settings.h" |
| 16 #include "core/html/HTMLElement.h" | 15 #include "core/html/HTMLElement.h" |
| 17 #include "core/layout/api/LayoutAPIShim.h" | 16 #include "core/layout/api/LayoutAPIShim.h" |
| 18 #include "core/layout/api/LayoutViewItem.h" | 17 #include "core/layout/api/LayoutViewItem.h" |
| 19 #include "core/loader/EmptyClients.h" | 18 #include "core/loader/EmptyClients.h" |
| 20 #include "core/testing/DummyPageHolder.h" | 19 #include "core/testing/DummyPageHolder.h" |
| 21 #include "wtf/Allocator.h" | 20 #include "wtf/Allocator.h" |
| 22 | 21 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 void loadAhem(); | 116 void loadAhem(); |
| 118 | 117 |
| 119 private: | 118 private: |
| 120 Persistent<LocalFrameClient> m_localFrameClient; | 119 Persistent<LocalFrameClient> m_localFrameClient; |
| 121 std::unique_ptr<DummyPageHolder> m_pageHolder; | 120 std::unique_ptr<DummyPageHolder> m_pageHolder; |
| 122 }; | 121 }; |
| 123 | 122 |
| 124 } // namespace blink | 123 } // namespace blink |
| 125 | 124 |
| 126 #endif // LayoutTestHelper_h | 125 #endif // LayoutTestHelper_h |
| OLD | NEW |