| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 EditingTestBase_h | 5 #ifndef EditingTestBase_h |
| 6 #define EditingTestBase_h | 6 #define EditingTestBase_h |
| 7 | 7 |
| 8 #include "core/editing/Position.h" | |
| 9 #include "wtf/Forward.h" | |
| 10 #include <gtest/gtest.h> | 8 #include <gtest/gtest.h> |
| 11 #include <memory> | 9 #include <memory> |
| 12 #include <string> | 10 #include <string> |
| 11 #include "core/editing/Position.h" |
| 12 #include "wtf/Forward.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class DummyPageHolder; | 16 class DummyPageHolder; |
| 17 class FrameSelection; | 17 class FrameSelection; |
| 18 class LocalFrame; | 18 class LocalFrame; |
| 19 | 19 |
| 20 class EditingTestBase : public ::testing::Test { | 20 class EditingTestBase : public ::testing::Test { |
| 21 USING_FAST_MALLOC(EditingTestBase); | 21 USING_FAST_MALLOC(EditingTestBase); |
| 22 | 22 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 41 const char* shadowHostId); | 41 const char* shadowHostId); |
| 42 void updateAllLifecyclePhases(); | 42 void updateAllLifecyclePhases(); |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 std::unique_ptr<DummyPageHolder> m_dummyPageHolder; | 45 std::unique_ptr<DummyPageHolder> m_dummyPageHolder; |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 } // namespace blink | 48 } // namespace blink |
| 49 | 49 |
| 50 #endif // EditingTestBase_h | 50 #endif // EditingTestBase_h |
| OLD | NEW |