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

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

Issue 2583603002: [Mojo Video Capture] Split OnIncomingCapturedVideoFrame() to OnNewBuffer() + OnFrameReadyInBuffer() (Closed)
Patch Set: Improve naming and fix Android background issue Created 3 years, 11 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 // Wait to check callbacks before removing the listener. 621 // Wait to check callbacks before removing the listener.
622 base::RunLoop().RunUntilIdle(); 622 base::RunLoop().RunUntilIdle();
623 vcm_->Unregister(); 623 vcm_->Unregister();
624 } 624 }
625 #endif 625 #endif
626 626
627 // TODO(mcasas): Add a test to check consolidation of the supported formats 627 // TODO(mcasas): Add a test to check consolidation of the supported formats
628 // provided by the device when http://crbug.com/323913 is closed. 628 // provided by the device when http://crbug.com/323913 is closed.
629 629
630 } // namespace content 630 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698