Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Side by Side Diff: components/test_runner/test_runner_for_specific_view.cc

Issue 2415083002: Move Device Sensors client files from Blink to //device/sensors client lib (Closed)
Patch Set: Fix gn check Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "components/test_runner/test_runner_for_specific_view.h" 5 #include "components/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 12 matching lines...) Expand all
23 #include "components/test_runner/mock_web_speech_recognizer.h" 23 #include "components/test_runner/mock_web_speech_recognizer.h"
24 #include "components/test_runner/mock_web_user_media_client.h" 24 #include "components/test_runner/mock_web_user_media_client.h"
25 #include "components/test_runner/pixel_dump.h" 25 #include "components/test_runner/pixel_dump.h"
26 #include "components/test_runner/spell_check_client.h" 26 #include "components/test_runner/spell_check_client.h"
27 #include "components/test_runner/test_common.h" 27 #include "components/test_runner/test_common.h"
28 #include "components/test_runner/test_interfaces.h" 28 #include "components/test_runner/test_interfaces.h"
29 #include "components/test_runner/test_preferences.h" 29 #include "components/test_runner/test_preferences.h"
30 #include "components/test_runner/test_runner.h" 30 #include "components/test_runner/test_runner.h"
31 #include "components/test_runner/web_test_delegate.h" 31 #include "components/test_runner/web_test_delegate.h"
32 #include "components/test_runner/web_view_test_proxy.h" 32 #include "components/test_runner/web_view_test_proxy.h"
33 #include "device/sensors/public/cpp/motion_data.h"
34 #include "device/sensors/public/cpp/orientation_data.h"
33 #include "gin/arguments.h" 35 #include "gin/arguments.h"
34 #include "gin/array_buffer.h" 36 #include "gin/array_buffer.h"
35 #include "gin/handle.h" 37 #include "gin/handle.h"
36 #include "gin/object_template_builder.h" 38 #include "gin/object_template_builder.h"
37 #include "gin/wrappable.h" 39 #include "gin/wrappable.h"
38 #include "third_party/WebKit/public/platform/WebCanvas.h" 40 #include "third_party/WebKit/public/platform/WebCanvas.h"
39 #include "third_party/WebKit/public/platform/WebData.h" 41 #include "third_party/WebKit/public/platform/WebData.h"
40 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" 42 #include "third_party/WebKit/public/platform/WebPasswordCredential.h"
41 #include "third_party/WebKit/public/platform/WebPoint.h" 43 #include "third_party/WebKit/public/platform/WebPoint.h"
42 #include "third_party/WebKit/public/platform/WebURLResponse.h" 44 #include "third_party/WebKit/public/platform/WebURLResponse.h"
43 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eMotionData.h"
44 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic eOrientationData.h"
45 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerRegistration.h" 45 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor kerRegistration.h"
46 #include "third_party/WebKit/public/web/WebArrayBuffer.h" 46 #include "third_party/WebKit/public/web/WebArrayBuffer.h"
47 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" 47 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h"
48 #include "third_party/WebKit/public/web/WebDataSource.h" 48 #include "third_party/WebKit/public/web/WebDataSource.h"
49 #include "third_party/WebKit/public/web/WebDocument.h" 49 #include "third_party/WebKit/public/web/WebDocument.h"
50 #include "third_party/WebKit/public/web/WebFindOptions.h" 50 #include "third_party/WebKit/public/web/WebFindOptions.h"
51 #include "third_party/WebKit/public/web/WebFrame.h" 51 #include "third_party/WebKit/public/web/WebFrame.h"
52 #include "third_party/WebKit/public/web/WebFrameWidget.h" 52 #include "third_party/WebKit/public/web/WebFrameWidget.h"
53 #include "third_party/WebKit/public/web/WebInputElement.h" 53 #include "third_party/WebKit/public/web/WebInputElement.h"
54 #include "third_party/WebKit/public/web/WebKit.h" 54 #include "third_party/WebKit/public/web/WebKit.h"
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 693
694 blink::WebView* TestRunnerForSpecificView::web_view() { 694 blink::WebView* TestRunnerForSpecificView::web_view() {
695 return web_view_test_proxy_base_->web_view(); 695 return web_view_test_proxy_base_->web_view();
696 } 696 }
697 697
698 WebTestDelegate* TestRunnerForSpecificView::delegate() { 698 WebTestDelegate* TestRunnerForSpecificView::delegate() {
699 return web_view_test_proxy_base_->delegate(); 699 return web_view_test_proxy_base_->delegate();
700 } 700 }
701 701
702 } // namespace test_runner 702 } // namespace test_runner
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698