| 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 COMPONENTS_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ |
| 6 #define COMPONENTS_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ | 6 #define COMPONENTS_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" |
| 17 | 17 |
| 18 class SkBitmap; | 18 class SkBitmap; |
| 19 | 19 |
| 20 namespace blink { | 20 namespace blink { |
| 21 class WebLocalFrame; | 21 class WebLocalFrame; |
| 22 class WebURLResponse; | 22 class WebURLResponse; |
| 23 class WebView; | 23 class WebView; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace gin { | 26 namespace gin { |
| 27 class ArrayBufferView; | |
| 28 class Arguments; | 27 class Arguments; |
| 29 } | 28 } |
| 30 | 29 |
| 31 namespace test_runner { | 30 namespace test_runner { |
| 32 | 31 |
| 33 class WebTestDelegate; | 32 class WebTestDelegate; |
| 34 class WebViewTestProxyBase; | 33 class WebViewTestProxyBase; |
| 35 | 34 |
| 36 // TestRunnerForSpecificView implements part of |testRunner| javascript bindings | 35 // TestRunnerForSpecificView implements part of |testRunner| javascript bindings |
| 37 // that work with a view where the javascript call originated from. Examples: | 36 // that work with a view where the javascript call originated from. Examples: |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 WebViewTestProxyBase* web_view_test_proxy_base_; | 221 WebViewTestProxyBase* web_view_test_proxy_base_; |
| 223 | 222 |
| 224 base::WeakPtrFactory<TestRunnerForSpecificView> weak_factory_; | 223 base::WeakPtrFactory<TestRunnerForSpecificView> weak_factory_; |
| 225 | 224 |
| 226 DISALLOW_COPY_AND_ASSIGN(TestRunnerForSpecificView); | 225 DISALLOW_COPY_AND_ASSIGN(TestRunnerForSpecificView); |
| 227 }; | 226 }; |
| 228 | 227 |
| 229 } // namespace test_runner | 228 } // namespace test_runner |
| 230 | 229 |
| 231 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ | 230 #endif // COMPONENTS_TEST_RUNNER_TEST_RUNNER_FOR_SPECIFIC_VIEW_H_ |
| OLD | NEW |