| OLD | NEW |
| 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 17 matching lines...) Expand all Loading... |
| 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/gamepad_controller.h" | 34 #include "components/test_runner/gamepad_controller.h" |
| 35 #include "components/test_runner/layout_and_paint_async_then.h" | 35 #include "components/test_runner/layout_and_paint_async_then.h" |
| 36 #include "components/test_runner/pixel_dump.h" | 36 #include "components/test_runner/pixel_dump.h" |
| 37 #include "components/test_runner/web_test_interfaces.h" | 37 #include "components/test_runner/web_test_interfaces.h" |
| 38 #include "components/test_runner/web_test_proxy.h" | |
| 39 #include "components/test_runner/web_test_runner.h" | 38 #include "components/test_runner/web_test_runner.h" |
| 39 #include "components/test_runner/web_view_test_proxy.h" |
| 40 #include "content/common/content_switches_internal.h" | 40 #include "content/common/content_switches_internal.h" |
| 41 #include "content/public/common/content_switches.h" | 41 #include "content/public/common/content_switches.h" |
| 42 #include "content/public/common/url_constants.h" | 42 #include "content/public/common/url_constants.h" |
| 43 #include "content/public/common/web_preferences.h" | 43 #include "content/public/common/web_preferences.h" |
| 44 #include "content/public/renderer/media_stream_utils.h" | 44 #include "content/public/renderer/media_stream_utils.h" |
| 45 #include "content/public/renderer/render_frame.h" | 45 #include "content/public/renderer/render_frame.h" |
| 46 #include "content/public/renderer/render_view.h" | 46 #include "content/public/renderer/render_view.h" |
| 47 #include "content/public/renderer/render_view_visitor.h" | 47 #include "content/public/renderer/render_view_visitor.h" |
| 48 #include "content/public/renderer/renderer_gamepad_provider.h" | 48 #include "content/public/renderer/renderer_gamepad_provider.h" |
| 49 #include "content/public/test/layouttest_support.h" | 49 #include "content/public/test/layouttest_support.h" |
| (...skipping 967 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 void BlinkTestRunner::ReportLeakDetectionResult( | 1017 void BlinkTestRunner::ReportLeakDetectionResult( |
| 1018 const LeakDetectionResult& report) { | 1018 const LeakDetectionResult& report) { |
| 1019 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); | 1019 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); |
| 1020 } | 1020 } |
| 1021 | 1021 |
| 1022 void BlinkTestRunner::OnDestruct() { | 1022 void BlinkTestRunner::OnDestruct() { |
| 1023 delete this; | 1023 delete this; |
| 1024 } | 1024 } |
| 1025 | 1025 |
| 1026 } // namespace content | 1026 } // namespace content |
| OLD | NEW |