| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/base/audio_capturer_source.h" | 56 #include "media/base/audio_capturer_source.h" |
| 57 #include "media/base/audio_parameters.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 "services/shell/public/cpp/interface_provider.h" | 61 #include "services/service_manager/public/cpp/interface_provider.h" |
| 62 #include "skia/ext/platform_canvas.h" | 62 #include "skia/ext/platform_canvas.h" |
| 63 #include "third_party/WebKit/public/platform/FilePathConversion.h" | 63 #include "third_party/WebKit/public/platform/FilePathConversion.h" |
| 64 #include "third_party/WebKit/public/platform/Platform.h" | 64 #include "third_party/WebKit/public/platform/Platform.h" |
| 65 #include "third_party/WebKit/public/platform/WebInputEvent.h" | 65 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 66 #include "third_party/WebKit/public/platform/WebPoint.h" | 66 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 67 #include "third_party/WebKit/public/platform/WebRect.h" | 67 #include "third_party/WebKit/public/platform/WebRect.h" |
| 68 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" | 68 #include "third_party/WebKit/public/platform/WebSecurityOrigin.h" |
| 69 #include "third_party/WebKit/public/platform/WebSize.h" | 69 #include "third_party/WebKit/public/platform/WebSize.h" |
| 70 #include "third_party/WebKit/public/platform/WebString.h" | 70 #include "third_party/WebKit/public/platform/WebString.h" |
| 71 #include "third_party/WebKit/public/platform/WebTaskRunner.h" | 71 #include "third_party/WebKit/public/platform/WebTaskRunner.h" |
| (...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 void BlinkTestRunner::ReportLeakDetectionResult( | 1026 void BlinkTestRunner::ReportLeakDetectionResult( |
| 1027 const LeakDetectionResult& report) { | 1027 const LeakDetectionResult& report) { |
| 1028 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); | 1028 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); |
| 1029 } | 1029 } |
| 1030 | 1030 |
| 1031 void BlinkTestRunner::OnDestruct() { | 1031 void BlinkTestRunner::OnDestruct() { |
| 1032 delete this; | 1032 delete this; |
| 1033 } | 1033 } |
| 1034 | 1034 |
| 1035 } // namespace content | 1035 } // namespace content |
| OLD | NEW |