| 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 SimTest_h | 5 #ifndef SimTest_h |
| 6 #define SimTest_h | 6 #define SimTest_h |
| 7 | 7 |
| 8 #include <gtest/gtest.h> |
| 8 #include "web/tests/FrameTestHelpers.h" | 9 #include "web/tests/FrameTestHelpers.h" |
| 9 #include "web/tests/sim/SimCompositor.h" | 10 #include "web/tests/sim/SimCompositor.h" |
| 10 #include "web/tests/sim/SimNetwork.h" | 11 #include "web/tests/sim/SimNetwork.h" |
| 11 #include "web/tests/sim/SimPage.h" | 12 #include "web/tests/sim/SimPage.h" |
| 12 #include "web/tests/sim/SimWebViewClient.h" | 13 #include "web/tests/sim/SimWebViewClient.h" |
| 13 #include <gtest/gtest.h> | |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class WebViewImpl; | 17 class WebViewImpl; |
| 18 class WebLocalFrameImpl; | 18 class WebLocalFrameImpl; |
| 19 class Document; | 19 class Document; |
| 20 class LocalDOMWindow; | 20 class LocalDOMWindow; |
| 21 | 21 |
| 22 class SimTest : public ::testing::Test { | 22 class SimTest : public ::testing::Test { |
| 23 protected: | 23 protected: |
| (...skipping 14 matching lines...) Expand all Loading... |
| 38 SimNetwork m_network; | 38 SimNetwork m_network; |
| 39 SimCompositor m_compositor; | 39 SimCompositor m_compositor; |
| 40 SimWebViewClient m_webViewClient; | 40 SimWebViewClient m_webViewClient; |
| 41 SimPage m_page; | 41 SimPage m_page; |
| 42 FrameTestHelpers::WebViewHelper m_webViewHelper; | 42 FrameTestHelpers::WebViewHelper m_webViewHelper; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace blink | 45 } // namespace blink |
| 46 | 46 |
| 47 #endif | 47 #endif |
| OLD | NEW |