| 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 // Unit test for VideoCaptureManager. | 5 // Unit test for VideoCaptureManager. |
| 6 | 6 |
| 7 #include "content/browser/renderer_host/media/video_capture_manager.h" | 7 #include "content/browser/renderer_host/media/video_capture_manager.h" |
| 8 | 8 |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 // Needed as an input argument to StartCaptureForClient(). | 136 // Needed as an input argument to StartCaptureForClient(). |
| 137 class MockFrameObserver : public VideoCaptureControllerEventHandler { | 137 class MockFrameObserver : public VideoCaptureControllerEventHandler { |
| 138 public: | 138 public: |
| 139 MOCK_METHOD1(OnError, void(VideoCaptureControllerID id)); | 139 MOCK_METHOD1(OnError, void(VideoCaptureControllerID id)); |
| 140 | 140 |
| 141 void OnBufferCreated(VideoCaptureControllerID id, | 141 void OnBufferCreated(VideoCaptureControllerID id, |
| 142 mojo::ScopedSharedBufferHandle handle, | 142 mojo::ScopedSharedBufferHandle handle, |
| 143 int length, int buffer_id) override {} | 143 int length, int buffer_id) override {} |
| 144 void OnBufferDestroyed(VideoCaptureControllerID id, int buffer_id) override {} | 144 void OnBufferDestroyed(VideoCaptureControllerID id, int buffer_id) override {} |
| 145 void OnBufferReady(VideoCaptureControllerID id, | 145 void OnBufferReady( |
| 146 int buffer_id, | 146 VideoCaptureControllerID id, |
| 147 const scoped_refptr<media::VideoFrame>& frame) override {} | 147 int buffer_id, |
| 148 const media::mojom::VideoFrameInfoPtr& frame_info) override {} |
| 148 void OnEnded(VideoCaptureControllerID id) override {} | 149 void OnEnded(VideoCaptureControllerID id) override {} |
| 149 | 150 |
| 150 void OnGotControllerCallback(VideoCaptureControllerID) {} | 151 void OnGotControllerCallback(VideoCaptureControllerID) {} |
| 151 }; | 152 }; |
| 152 | 153 |
| 153 } // namespace | 154 } // namespace |
| 154 | 155 |
| 155 // Test class | 156 // Test class |
| 156 class VideoCaptureManagerTest : public testing::Test { | 157 class VideoCaptureManagerTest : public testing::Test { |
| 157 public: | 158 public: |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 733 // Wait to check callbacks before removing the listener. | 734 // Wait to check callbacks before removing the listener. |
| 734 base::RunLoop().RunUntilIdle(); | 735 base::RunLoop().RunUntilIdle(); |
| 735 vcm_->UnregisterListener(); | 736 vcm_->UnregisterListener(); |
| 736 } | 737 } |
| 737 #endif | 738 #endif |
| 738 | 739 |
| 739 // TODO(mcasas): Add a test to check consolidation of the supported formats | 740 // TODO(mcasas): Add a test to check consolidation of the supported formats |
| 740 // provided by the device when http://crbug.com/323913 is closed. | 741 // provided by the device when http://crbug.com/323913 is closed. |
| 741 | 742 |
| 742 } // namespace content | 743 } // namespace content |
| OLD | NEW |