Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(322)

Side by Side Diff: content/browser/renderer_host/media/video_capture_manager_unittest.cc

Issue 2686763002: [Mojo Video Capture] Split OnIncomingCapturedVideoFrame() to OnNewBuffer() and OnFrameReadyInBuffer( (Closed)
Patch Set: Remove unused bool accidentally introduced in PS2 Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 // Wait to check callbacks before removing the listener. 733 // Wait to check callbacks before removing the listener.
733 base::RunLoop().RunUntilIdle(); 734 base::RunLoop().RunUntilIdle();
734 vcm_->Unregister(); 735 vcm_->Unregister();
735 } 736 }
736 #endif 737 #endif
737 738
738 // TODO(mcasas): Add a test to check consolidation of the supported formats 739 // TODO(mcasas): Add a test to check consolidation of the supported formats
739 // provided by the device when http://crbug.com/323913 is closed. 740 // provided by the device when http://crbug.com/323913 is closed.
740 741
741 } // namespace content 742 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698