| 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 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 754 bool BlinkTestRunner::IsNavigationInitiatedByRenderer( | 754 bool BlinkTestRunner::IsNavigationInitiatedByRenderer( |
| 755 const WebURLRequest& request) { | 755 const WebURLRequest& request) { |
| 756 return content::IsNavigationInitiatedByRenderer(request); | 756 return content::IsNavigationInitiatedByRenderer(request); |
| 757 } | 757 } |
| 758 | 758 |
| 759 bool BlinkTestRunner::AddMediaStreamVideoSourceAndTrack( | 759 bool BlinkTestRunner::AddMediaStreamVideoSourceAndTrack( |
| 760 blink::WebMediaStream* stream) { | 760 blink::WebMediaStream* stream) { |
| 761 DCHECK(stream); | 761 DCHECK(stream); |
| 762 #if BUILDFLAG(ENABLE_WEBRTC) | 762 #if BUILDFLAG(ENABLE_WEBRTC) |
| 763 return AddVideoTrackToMediaStream(base::MakeUnique<MockVideoCapturerSource>(), | 763 return AddVideoTrackToMediaStream(base::MakeUnique<MockVideoCapturerSource>(), |
| 764 false, // is_remote |
| 765 false, // is_readonly |
| 764 stream); | 766 stream); |
| 765 #else | 767 #else |
| 766 return false; | 768 return false; |
| 767 #endif | 769 #endif |
| 768 } | 770 } |
| 769 | 771 |
| 770 bool BlinkTestRunner::AddMediaStreamAudioSourceAndTrack( | 772 bool BlinkTestRunner::AddMediaStreamAudioSourceAndTrack( |
| 771 blink::WebMediaStream* stream) { | 773 blink::WebMediaStream* stream) { |
| 772 DCHECK(stream); | 774 DCHECK(stream); |
| 773 #if BUILDFLAG(ENABLE_WEBRTC) | 775 #if BUILDFLAG(ENABLE_WEBRTC) |
| 774 return AddAudioTrackToMediaStream( | 776 return AddAudioTrackToMediaStream( |
| 775 make_scoped_refptr(new MockAudioCapturerSource()), | 777 make_scoped_refptr(new MockAudioCapturerSource()), |
| 776 48000, // sample rate | 778 48000, // sample rate |
| 777 media::CHANNEL_LAYOUT_STEREO, | 779 media::CHANNEL_LAYOUT_STEREO, |
| 778 480, // sample frames per buffer | 780 480, // sample frames per buffer |
| 781 false, // is_remote |
| 782 false, // is_readonly |
| 779 stream); | 783 stream); |
| 780 #else | 784 #else |
| 781 return false; | 785 return false; |
| 782 #endif | 786 #endif |
| 783 } | 787 } |
| 784 | 788 |
| 785 // RenderViewObserver -------------------------------------------------------- | 789 // RenderViewObserver -------------------------------------------------------- |
| 786 | 790 |
| 787 void BlinkTestRunner::DidClearWindowObject(WebLocalFrame* frame) { | 791 void BlinkTestRunner::DidClearWindowObject(WebLocalFrame* frame) { |
| 788 WebTestingSupport::injectInternalsObject(frame); | 792 WebTestingSupport::injectInternalsObject(frame); |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 void BlinkTestRunner::ReportLeakDetectionResult( | 1040 void BlinkTestRunner::ReportLeakDetectionResult( |
| 1037 const LeakDetectionResult& report) { | 1041 const LeakDetectionResult& report) { |
| 1038 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); | 1042 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); |
| 1039 } | 1043 } |
| 1040 | 1044 |
| 1041 void BlinkTestRunner::OnDestruct() { | 1045 void BlinkTestRunner::OnDestruct() { |
| 1042 delete this; | 1046 delete this; |
| 1043 } | 1047 } |
| 1044 | 1048 |
| 1045 } // namespace content | 1049 } // namespace content |
| OLD | NEW |