| 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 #include "content/shell/test_runner/test_runner_for_specific_view.h" | 5 #include "content/shell/test_runner/test_runner_for_specific_view.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "content/shell/test_runner/mock_web_speech_recognizer.h" | 22 #include "content/shell/test_runner/mock_web_speech_recognizer.h" |
| 23 #include "content/shell/test_runner/mock_web_user_media_client.h" | 23 #include "content/shell/test_runner/mock_web_user_media_client.h" |
| 24 #include "content/shell/test_runner/pixel_dump.h" | 24 #include "content/shell/test_runner/pixel_dump.h" |
| 25 #include "content/shell/test_runner/spell_check_client.h" | 25 #include "content/shell/test_runner/spell_check_client.h" |
| 26 #include "content/shell/test_runner/test_common.h" | 26 #include "content/shell/test_runner/test_common.h" |
| 27 #include "content/shell/test_runner/test_interfaces.h" | 27 #include "content/shell/test_runner/test_interfaces.h" |
| 28 #include "content/shell/test_runner/test_preferences.h" | 28 #include "content/shell/test_runner/test_preferences.h" |
| 29 #include "content/shell/test_runner/test_runner.h" | 29 #include "content/shell/test_runner/test_runner.h" |
| 30 #include "content/shell/test_runner/web_test_delegate.h" | 30 #include "content/shell/test_runner/web_test_delegate.h" |
| 31 #include "content/shell/test_runner/web_view_test_proxy.h" | 31 #include "content/shell/test_runner/web_view_test_proxy.h" |
| 32 #include "device/sensors/public/cpp/motion_data.h" | |
| 33 #include "device/sensors/public/cpp/orientation_data.h" | 32 #include "device/sensors/public/cpp/orientation_data.h" |
| 34 #include "gin/arguments.h" | 33 #include "gin/arguments.h" |
| 35 #include "gin/array_buffer.h" | 34 #include "gin/array_buffer.h" |
| 36 #include "gin/handle.h" | 35 #include "gin/handle.h" |
| 37 #include "gin/object_template_builder.h" | 36 #include "gin/object_template_builder.h" |
| 38 #include "gin/wrappable.h" | 37 #include "gin/wrappable.h" |
| 39 #include "third_party/WebKit/public/platform/WebCanvas.h" | 38 #include "third_party/WebKit/public/platform/WebCanvas.h" |
| 40 #include "third_party/WebKit/public/platform/WebData.h" | 39 #include "third_party/WebKit/public/platform/WebData.h" |
| 41 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" | 40 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" |
| 42 #include "third_party/WebKit/public/platform/WebPoint.h" | 41 #include "third_party/WebKit/public/platform/WebPoint.h" |
| (...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 | 686 |
| 688 blink::WebView* TestRunnerForSpecificView::web_view() { | 687 blink::WebView* TestRunnerForSpecificView::web_view() { |
| 689 return web_view_test_proxy_base_->web_view(); | 688 return web_view_test_proxy_base_->web_view(); |
| 690 } | 689 } |
| 691 | 690 |
| 692 WebTestDelegate* TestRunnerForSpecificView::delegate() { | 691 WebTestDelegate* TestRunnerForSpecificView::delegate() { |
| 693 return web_view_test_proxy_base_->delegate(); | 692 return web_view_test_proxy_base_->delegate(); |
| 694 } | 693 } |
| 695 | 694 |
| 696 } // namespace test_runner | 695 } // namespace test_runner |
| OLD | NEW |