| 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_CLIENT_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_WEB_WIDGET_TEST_CLIENT_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_WEB_WIDGET_TEST_CLIENT_H_ | 6 #define CONTENT_SHELL_TEST_RUNNER_WEB_WIDGET_TEST_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "third_party/WebKit/public/web/WebWidgetClient.h" | 10 #include "third_party/WebKit/public/web/WebWidgetClient.h" |
| 11 | 11 |
| 12 namespace test_runner { | 12 namespace test_runner { |
| 13 | 13 |
| 14 class TestRunner; | 14 class TestRunner; |
| 15 class TestRunnerForSpecificView; | 15 class TestRunnerForSpecificView; |
| 16 class WebTestDelegate; | 16 class WebTestDelegate; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 | 55 |
| 56 bool animation_scheduled_; | 56 bool animation_scheduled_; |
| 57 | 57 |
| 58 base::WeakPtrFactory<WebWidgetTestClient> weak_factory_; | 58 base::WeakPtrFactory<WebWidgetTestClient> weak_factory_; |
| 59 | 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(WebWidgetTestClient); | 60 DISALLOW_COPY_AND_ASSIGN(WebWidgetTestClient); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace test_runner | 63 } // namespace test_runner |
| 64 | 64 |
| 65 #endif // COMPONENTS_TEST_RUNNER_WEB_WIDGET_TEST_CLIENT_H_ | 65 #endif // CONTENT_SHELL_TEST_RUNNER_WEB_WIDGET_TEST_CLIENT_H_ |
| OLD | NEW |