| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(VideoCaptureControllerID id, |
| 146 int buffer_id, | 146 int buffer_id, |
| 147 const scoped_refptr<media::VideoFrame>& frame) override {} | 147 media::mojom::VideoFrameInfoPtr frame_info) override {} |
| 148 void OnEnded(VideoCaptureControllerID id) override {} | 148 void OnEnded(VideoCaptureControllerID id) override {} |
| 149 | 149 |
| 150 void OnGotControllerCallback(VideoCaptureControllerID) {} | 150 void OnGotControllerCallback(VideoCaptureControllerID) {} |
| 151 }; | 151 }; |
| 152 | 152 |
| 153 } // namespace | 153 } // namespace |
| 154 | 154 |
| 155 // Test class | 155 // Test class |
| 156 class VideoCaptureManagerTest : public testing::Test { | 156 class VideoCaptureManagerTest : public testing::Test { |
| 157 public: | 157 public: |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 732 // Wait to check callbacks before removing the listener. | 732 // Wait to check callbacks before removing the listener. |
| 733 base::RunLoop().RunUntilIdle(); | 733 base::RunLoop().RunUntilIdle(); |
| 734 vcm_->Unregister(); | 734 vcm_->Unregister(); |
| 735 } | 735 } |
| 736 #endif | 736 #endif |
| 737 | 737 |
| 738 // TODO(mcasas): Add a test to check consolidation of the supported formats | 738 // TODO(mcasas): Add a test to check consolidation of the supported formats |
| 739 // provided by the device when http://crbug.com/323913 is closed. | 739 // provided by the device when http://crbug.com/323913 is closed. |
| 740 | 740 |
| 741 } // namespace content | 741 } // namespace content |
| OLD | NEW |