| 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 COMPONENTS_TEST_RUNNER_TEST_INTERFACES_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_TEST_INTERFACES_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_TEST_INTERFACES_H_ | 6 #define CONTENT_SHELL_TEST_RUNNER_TEST_INTERFACES_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 13 #include "components/test_runner/mock_web_theme_engine.h" | 13 #include "content/shell/test_runner/mock_web_theme_engine.h" |
| 14 #include "third_party/WebKit/public/platform/WebNonCopyable.h" | 14 #include "third_party/WebKit/public/platform/WebNonCopyable.h" |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 class WebFrame; | 17 class WebFrame; |
| 18 class WebThemeEngine; | 18 class WebThemeEngine; |
| 19 class WebURL; | 19 class WebURL; |
| 20 class WebView; | 20 class WebView; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace test_runner { | 23 namespace test_runner { |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 std::vector<WebViewTestProxyBase*> window_list_; | 57 std::vector<WebViewTestProxyBase*> window_list_; |
| 58 blink::WebView* main_view_; | 58 blink::WebView* main_view_; |
| 59 | 59 |
| 60 std::unique_ptr<MockWebThemeEngine> theme_engine_; | 60 std::unique_ptr<MockWebThemeEngine> theme_engine_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(TestInterfaces); | 62 DISALLOW_COPY_AND_ASSIGN(TestInterfaces); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace test_runner | 65 } // namespace test_runner |
| 66 | 66 |
| 67 #endif // COMPONENTS_TEST_RUNNER_TEST_INTERFACES_H_ | 67 #endif // CONTENT_SHELL_TEST_RUNNER_TEST_INTERFACES_H_ |
| OLD | NEW |