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

Side by Side Diff: content/shell/renderer/layout_test/blink_test_runner.cc

Issue 2707183003: Move //components/test_runner back into //content/shell (Closed)
Patch Set: Trim DEPS Created 3 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/renderer/layout_test/blink_test_runner.h" 5 #include "content/shell/renderer/layout_test/blink_test_runner.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <clocale> 10 #include <clocale>
(...skipping 13 matching lines...) Expand all
24 #include "base/single_thread_task_runner.h" 24 #include "base/single_thread_task_runner.h"
25 #include "base/strings/string_util.h" 25 #include "base/strings/string_util.h"
26 #include "base/strings/stringprintf.h" 26 #include "base/strings/stringprintf.h"
27 #include "base/strings/sys_string_conversions.h" 27 #include "base/strings/sys_string_conversions.h"
28 #include "base/strings/utf_string_conversions.h" 28 #include "base/strings/utf_string_conversions.h"
29 #include "base/threading/thread_task_runner_handle.h" 29 #include "base/threading/thread_task_runner_handle.h"
30 #include "base/time/time.h" 30 #include "base/time/time.h"
31 #include "base/values.h" 31 #include "base/values.h"
32 #include "build/build_config.h" 32 #include "build/build_config.h"
33 #include "components/plugins/renderer/plugin_placeholder.h" 33 #include "components/plugins/renderer/plugin_placeholder.h"
34 #include "components/test_runner/app_banner_service.h"
35 #include "components/test_runner/gamepad_controller.h"
36 #include "components/test_runner/layout_and_paint_async_then.h"
37 #include "components/test_runner/pixel_dump.h"
38 #include "components/test_runner/web_test_interfaces.h"
39 #include "components/test_runner/web_test_runner.h"
40 #include "components/test_runner/web_view_test_proxy.h"
41 #include "content/common/content_switches_internal.h" 34 #include "content/common/content_switches_internal.h"
42 #include "content/public/common/content_switches.h" 35 #include "content/public/common/content_switches.h"
43 #include "content/public/common/url_constants.h" 36 #include "content/public/common/url_constants.h"
44 #include "content/public/common/web_preferences.h" 37 #include "content/public/common/web_preferences.h"
45 #include "content/public/renderer/media_stream_utils.h" 38 #include "content/public/renderer/media_stream_utils.h"
46 #include "content/public/renderer/render_frame.h" 39 #include "content/public/renderer/render_frame.h"
47 #include "content/public/renderer/render_view.h" 40 #include "content/public/renderer/render_view.h"
48 #include "content/public/renderer/render_view_visitor.h" 41 #include "content/public/renderer/render_view_visitor.h"
49 #include "content/public/renderer/renderer_gamepad_provider.h" 42 #include "content/public/renderer/renderer_gamepad_provider.h"
50 #include "content/public/test/layouttest_support.h" 43 #include "content/public/test/layouttest_support.h"
51 #include "content/shell/common/layout_test/layout_test_messages.h" 44 #include "content/shell/common/layout_test/layout_test_messages.h"
52 #include "content/shell/common/shell_messages.h" 45 #include "content/shell/common/shell_messages.h"
53 #include "content/shell/common/shell_switches.h" 46 #include "content/shell/common/shell_switches.h"
54 #include "content/shell/renderer/layout_test/blink_test_helpers.h" 47 #include "content/shell/renderer/layout_test/blink_test_helpers.h"
55 #include "content/shell/renderer/layout_test/layout_test_render_thread_observer. h" 48 #include "content/shell/renderer/layout_test/layout_test_render_thread_observer. h"
56 #include "content/shell/renderer/layout_test/leak_detector.h" 49 #include "content/shell/renderer/layout_test/leak_detector.h"
50 #include "content/shell/test_runner/app_banner_service.h"
51 #include "content/shell/test_runner/gamepad_controller.h"
52 #include "content/shell/test_runner/layout_and_paint_async_then.h"
53 #include "content/shell/test_runner/pixel_dump.h"
54 #include "content/shell/test_runner/web_test_interfaces.h"
55 #include "content/shell/test_runner/web_test_runner.h"
56 #include "content/shell/test_runner/web_view_test_proxy.h"
57 #include "media/base/audio_capturer_source.h" 57 #include "media/base/audio_capturer_source.h"
58 #include "media/base/audio_parameters.h" 58 #include "media/base/audio_parameters.h"
59 #include "media/capture/video_capturer_source.h" 59 #include "media/capture/video_capturer_source.h"
60 #include "media/media_features.h" 60 #include "media/media_features.h"
61 #include "net/base/filename_util.h" 61 #include "net/base/filename_util.h"
62 #include "net/base/net_errors.h" 62 #include "net/base/net_errors.h"
63 #include "services/service_manager/public/cpp/interface_provider.h" 63 #include "services/service_manager/public/cpp/interface_provider.h"
64 #include "services/service_manager/public/cpp/interface_registry.h" 64 #include "services/service_manager/public/cpp/interface_registry.h"
65 #include "skia/ext/platform_canvas.h" 65 #include "skia/ext/platform_canvas.h"
66 #include "third_party/WebKit/public/platform/FilePathConversion.h" 66 #include "third_party/WebKit/public/platform/FilePathConversion.h"
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 void BlinkTestRunner::ReportLeakDetectionResult( 1035 void BlinkTestRunner::ReportLeakDetectionResult(
1036 const LeakDetectionResult& report) { 1036 const LeakDetectionResult& report) {
1037 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); 1037 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report));
1038 } 1038 }
1039 1039
1040 void BlinkTestRunner::OnDestruct() { 1040 void BlinkTestRunner::OnDestruct() {
1041 delete this; 1041 delete this;
1042 } 1042 }
1043 1043
1044 } // namespace content 1044 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698