| 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 "gin/arguments.h" | 34 #include "gin/arguments.h" |
| 33 #include "gin/array_buffer.h" | 35 #include "gin/array_buffer.h" |
| 34 #include "gin/handle.h" | 36 #include "gin/handle.h" |
| 35 #include "gin/object_template_builder.h" | 37 #include "gin/object_template_builder.h" |
| 36 #include "gin/wrappable.h" | 38 #include "gin/wrappable.h" |
| 37 #include "third_party/WebKit/public/platform/WebCanvas.h" | 39 #include "third_party/WebKit/public/platform/WebCanvas.h" |
| 38 #include "third_party/WebKit/public/platform/WebData.h" | 40 #include "third_party/WebKit/public/platform/WebData.h" |
| 39 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" | 41 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" |
| 40 #include "third_party/WebKit/public/platform/WebPoint.h" | 42 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 41 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 43 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 42 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionData.h" | |
| 43 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationData.h" | |
| 44 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerRegistration.h" | 44 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerRegistration.h" |
| 45 #include "third_party/WebKit/public/web/WebArrayBuffer.h" | 45 #include "third_party/WebKit/public/web/WebArrayBuffer.h" |
| 46 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" | 46 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" |
| 47 #include "third_party/WebKit/public/web/WebDataSource.h" | 47 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 48 #include "third_party/WebKit/public/web/WebDocument.h" | 48 #include "third_party/WebKit/public/web/WebDocument.h" |
| 49 #include "third_party/WebKit/public/web/WebFindOptions.h" | 49 #include "third_party/WebKit/public/web/WebFindOptions.h" |
| 50 #include "third_party/WebKit/public/web/WebFrame.h" | 50 #include "third_party/WebKit/public/web/WebFrame.h" |
| 51 #include "third_party/WebKit/public/web/WebFrameWidget.h" | 51 #include "third_party/WebKit/public/web/WebFrameWidget.h" |
| 52 #include "third_party/WebKit/public/web/WebInputElement.h" | 52 #include "third_party/WebKit/public/web/WebInputElement.h" |
| 53 #include "third_party/WebKit/public/web/WebKit.h" | 53 #include "third_party/WebKit/public/web/WebKit.h" |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 | 688 |
| 689 blink::WebView* TestRunnerForSpecificView::web_view() { | 689 blink::WebView* TestRunnerForSpecificView::web_view() { |
| 690 return web_view_test_proxy_base_->web_view(); | 690 return web_view_test_proxy_base_->web_view(); |
| 691 } | 691 } |
| 692 | 692 |
| 693 WebTestDelegate* TestRunnerForSpecificView::delegate() { | 693 WebTestDelegate* TestRunnerForSpecificView::delegate() { |
| 694 return web_view_test_proxy_base_->delegate(); | 694 return web_view_test_proxy_base_->delegate(); |
| 695 } | 695 } |
| 696 | 696 |
| 697 } // namespace test_runner | 697 } // namespace test_runner |
| OLD | NEW |