| 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/webkit_test_runner.h" | 5 #include "content/shell/renderer/layout_test/webkit_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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 #include "third_party/WebKit/public/web/WebDevToolsAgent.h" | 60 #include "third_party/WebKit/public/web/WebDevToolsAgent.h" |
| 61 #include "third_party/WebKit/public/web/WebDocument.h" | 61 #include "third_party/WebKit/public/web/WebDocument.h" |
| 62 #include "third_party/WebKit/public/web/WebElement.h" | 62 #include "third_party/WebKit/public/web/WebElement.h" |
| 63 #include "third_party/WebKit/public/web/WebHistoryItem.h" | 63 #include "third_party/WebKit/public/web/WebHistoryItem.h" |
| 64 #include "third_party/WebKit/public/web/WebKit.h" | 64 #include "third_party/WebKit/public/web/WebKit.h" |
| 65 #include "third_party/WebKit/public/web/WebLeakDetector.h" | 65 #include "third_party/WebKit/public/web/WebLeakDetector.h" |
| 66 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 66 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
| 67 #include "third_party/WebKit/public/web/WebScriptSource.h" | 67 #include "third_party/WebKit/public/web/WebScriptSource.h" |
| 68 #include "third_party/WebKit/public/web/WebTestingSupport.h" | 68 #include "third_party/WebKit/public/web/WebTestingSupport.h" |
| 69 #include "third_party/WebKit/public/web/WebView.h" | 69 #include "third_party/WebKit/public/web/WebView.h" |
| 70 #include "ui/gfx/rect.h" | 70 #include "ui/gfx/geometry/rect.h" |
| 71 | 71 |
| 72 using blink::Platform; | 72 using blink::Platform; |
| 73 using blink::WebArrayBufferView; | 73 using blink::WebArrayBufferView; |
| 74 using blink::WebContextMenuData; | 74 using blink::WebContextMenuData; |
| 75 using blink::WebDevToolsAgent; | 75 using blink::WebDevToolsAgent; |
| 76 using blink::WebDeviceMotionData; | 76 using blink::WebDeviceMotionData; |
| 77 using blink::WebDeviceOrientationData; | 77 using blink::WebDeviceOrientationData; |
| 78 using blink::WebElement; | 78 using blink::WebElement; |
| 79 using blink::WebLocalFrame; | 79 using blink::WebLocalFrame; |
| 80 using blink::WebHistoryItem; | 80 using blink::WebHistoryItem; |
| (...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 | 777 |
| 778 leak_detector_->TryLeakDetection(main_frame); | 778 leak_detector_->TryLeakDetection(main_frame); |
| 779 } | 779 } |
| 780 | 780 |
| 781 void WebKitTestRunner::ReportLeakDetectionResult( | 781 void WebKitTestRunner::ReportLeakDetectionResult( |
| 782 const LeakDetectionResult& report) { | 782 const LeakDetectionResult& report) { |
| 783 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); | 783 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); |
| 784 } | 784 } |
| 785 | 785 |
| 786 } // namespace content | 786 } // namespace content |
| OLD | NEW |