| 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 <algorithm> | 7 #include <algorithm> |
| 8 #include <clocale> | 8 #include <clocale> |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 #include "content/public/common/url_constants.h" | 25 #include "content/public/common/url_constants.h" |
| 26 #include "content/public/common/web_preferences.h" | 26 #include "content/public/common/web_preferences.h" |
| 27 #include "content/public/renderer/render_frame.h" | 27 #include "content/public/renderer/render_frame.h" |
| 28 #include "content/public/renderer/render_view.h" | 28 #include "content/public/renderer/render_view.h" |
| 29 #include "content/public/renderer/render_view_visitor.h" | 29 #include "content/public/renderer/render_view_visitor.h" |
| 30 #include "content/public/renderer/renderer_gamepad_provider.h" | 30 #include "content/public/renderer/renderer_gamepad_provider.h" |
| 31 #include "content/public/test/layouttest_support.h" | 31 #include "content/public/test/layouttest_support.h" |
| 32 #include "content/shell/common/layout_test/layout_test_messages.h" | 32 #include "content/shell/common/layout_test/layout_test_messages.h" |
| 33 #include "content/shell/common/shell_messages.h" | 33 #include "content/shell/common/shell_messages.h" |
| 34 #include "content/shell/common/shell_switches.h" | 34 #include "content/shell/common/shell_switches.h" |
| 35 #include "content/shell/common/webkit_test_helpers.h" | 35 #include "content/shell/renderer/layout_test/blink_test_helpers.h" |
| 36 #include "content/shell/renderer/layout_test/gc_controller.h" | 36 #include "content/shell/renderer/layout_test/gc_controller.h" |
| 37 #include "content/shell/renderer/layout_test/layout_test_render_process_observer
.h" | 37 #include "content/shell/renderer/layout_test/layout_test_render_process_observer
.h" |
| 38 #include "content/shell/renderer/layout_test/leak_detector.h" | 38 #include "content/shell/renderer/layout_test/leak_detector.h" |
| 39 #include "content/shell/renderer/test_runner/mock_screen_orientation_client.h" | 39 #include "content/shell/renderer/test_runner/mock_screen_orientation_client.h" |
| 40 #include "content/shell/renderer/test_runner/web_task.h" | 40 #include "content/shell/renderer/test_runner/web_task.h" |
| 41 #include "content/shell/renderer/test_runner/web_test_interfaces.h" | 41 #include "content/shell/renderer/test_runner/web_test_interfaces.h" |
| 42 #include "content/shell/renderer/test_runner/web_test_proxy.h" | 42 #include "content/shell/renderer/test_runner/web_test_proxy.h" |
| 43 #include "content/shell/renderer/test_runner/web_test_runner.h" | 43 #include "content/shell/renderer/test_runner/web_test_runner.h" |
| 44 #include "net/base/filename_util.h" | 44 #include "net/base/filename_util.h" |
| 45 #include "net/base/net_errors.h" | 45 #include "net/base/net_errors.h" |
| (...skipping 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 787 | 787 |
| 788 leak_detector_->TryLeakDetection(main_frame); | 788 leak_detector_->TryLeakDetection(main_frame); |
| 789 } | 789 } |
| 790 | 790 |
| 791 void BlinkTestRunner::ReportLeakDetectionResult( | 791 void BlinkTestRunner::ReportLeakDetectionResult( |
| 792 const LeakDetectionResult& report) { | 792 const LeakDetectionResult& report) { |
| 793 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); | 793 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); |
| 794 } | 794 } |
| 795 | 795 |
| 796 } // namespace content | 796 } // namespace content |
| OLD | NEW |