| 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_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ | 5 #ifndef CONTENT_SHELL_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ | 6 #define CONTENT_SHELL_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "v8/include/v8.h" | 16 #include "v8/include/v8.h" |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 WebTestDelegate* delegate(); | 220 WebTestDelegate* delegate(); |
| 221 WebViewTestProxyBase* web_view_test_proxy_base_; | 221 WebViewTestProxyBase* web_view_test_proxy_base_; |
| 222 | 222 |
| 223 base::WeakPtrFactory<TestRunnerForSpecificView> weak_factory_; | 223 base::WeakPtrFactory<TestRunnerForSpecificView> weak_factory_; |
| 224 | 224 |
| 225 DISALLOW_COPY_AND_ASSIGN(TestRunnerForSpecificView); | 225 DISALLOW_COPY_AND_ASSIGN(TestRunnerForSpecificView); |
| 226 }; | 226 }; |
| 227 | 227 |
| 228 } // namespace test_runner | 228 } // namespace test_runner |
| 229 | 229 |
| 230 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ | 230 #endif // CONTENT_SHELL_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ |
| OLD | NEW |