| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_WEB_WIDGET_TEST_PROXY_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_WEB_WIDGET_TEST_PROXY_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_WEB_WIDGET_TEST_PROXY_H_ | 6 #define CONTENT_SHELL_TEST_RUNNER_WEB_WIDGET_TEST_PROXY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "components/test_runner/test_runner_export.h" | 12 #include "content/shell/test_runner/test_runner_export.h" |
| 13 #include "components/test_runner/web_widget_test_client.h" | 13 #include "content/shell/test_runner/web_widget_test_client.h" |
| 14 #include "third_party/WebKit/public/web/WebWidgetClient.h" | 14 #include "third_party/WebKit/public/web/WebWidgetClient.h" |
| 15 | 15 |
| 16 namespace blink { | 16 namespace blink { |
| 17 class WebLocalFrame; | 17 class WebLocalFrame; |
| 18 class WebString; | 18 class WebString; |
| 19 class WebWidget; | 19 class WebWidget; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace test_runner { | 22 namespace test_runner { |
| 23 | 23 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 } | 133 } |
| 134 | 134 |
| 135 private: | 135 private: |
| 136 virtual ~WebWidgetTestProxy() {} | 136 virtual ~WebWidgetTestProxy() {} |
| 137 | 137 |
| 138 DISALLOW_COPY_AND_ASSIGN(WebWidgetTestProxy); | 138 DISALLOW_COPY_AND_ASSIGN(WebWidgetTestProxy); |
| 139 }; | 139 }; |
| 140 | 140 |
| 141 } // namespace test_runner | 141 } // namespace test_runner |
| 142 | 142 |
| 143 #endif // COMPONENTS_TEST_RUNNER_WEB_WIDGET_TEST_PROXY_H_ | 143 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_WIDGET_TEST_PROXY_H_ |
| OLD | NEW |