| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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" |
| 50 #include "content/shell/common/layout_test/layout_test_messages.h" | 50 #include "content/shell/common/layout_test/layout_test_messages.h" |
| 51 #include "content/shell/common/shell_messages.h" | 51 #include "content/shell/common/shell_messages.h" |
| 52 #include "content/shell/common/shell_switches.h" | 52 #include "content/shell/common/shell_switches.h" |
| 53 #include "content/shell/renderer/layout_test/blink_test_helpers.h" | 53 #include "content/shell/renderer/layout_test/blink_test_helpers.h" |
| 54 #include "content/shell/renderer/layout_test/layout_test_render_thread_observer.
h" | 54 #include "content/shell/renderer/layout_test/layout_test_render_thread_observer.
h" |
| 55 #include "content/shell/renderer/layout_test/leak_detector.h" | 55 #include "content/shell/renderer/layout_test/leak_detector.h" |
| 56 #include "media/audio/audio_parameters.h" | |
| 57 #include "media/base/audio_capturer_source.h" | 56 #include "media/base/audio_capturer_source.h" |
| 57 #include "media/base/audio_parameters.h" |
| 58 #include "media/base/video_capturer_source.h" | 58 #include "media/base/video_capturer_source.h" |
| 59 #include "net/base/filename_util.h" | 59 #include "net/base/filename_util.h" |
| 60 #include "net/base/net_errors.h" | 60 #include "net/base/net_errors.h" |
| 61 #include "skia/ext/platform_canvas.h" | 61 #include "skia/ext/platform_canvas.h" |
| 62 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 62 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
| 63 #include "third_party/WebKit/public/platform/Platform.h" | 63 #include "third_party/WebKit/public/platform/Platform.h" |
| 64 #include "third_party/WebKit/public/platform/WebPoint.h" | 64 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 65 #include "third_party/WebKit/public/platform/WebRect.h" | 65 #include "third_party/WebKit/public/platform/WebRect.h" |
| 66 #include "third_party/WebKit/public/platform/WebSize.h" | 66 #include "third_party/WebKit/public/platform/WebSize.h" |
| 67 #include "third_party/WebKit/public/platform/WebString.h" | 67 #include "third_party/WebKit/public/platform/WebString.h" |
| (...skipping 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 get_bluetooth_events_callbacks_.pop_front(); | 958 get_bluetooth_events_callbacks_.pop_front(); |
| 959 callback.Run(events); | 959 callback.Run(events); |
| 960 } | 960 } |
| 961 | 961 |
| 962 void BlinkTestRunner::ReportLeakDetectionResult( | 962 void BlinkTestRunner::ReportLeakDetectionResult( |
| 963 const LeakDetectionResult& report) { | 963 const LeakDetectionResult& report) { |
| 964 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); | 964 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); |
| 965 } | 965 } |
| 966 | 966 |
| 967 } // namespace content | 967 } // namespace content |
| OLD | NEW |