| 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 VideoCaptureController. | 5 // Unit test for VideoCaptureController. |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/bind_helpers.h" | 10 #include "base/bind_helpers.h" |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 base::TimeDelta(), | 138 base::TimeDelta(), |
| 139 base::Closure()); | 139 base::Closure()); |
| 140 } | 140 } |
| 141 | 141 |
| 142 scoped_refptr<media::VideoFrame> WrapMailboxBuffer( | 142 scoped_refptr<media::VideoFrame> WrapMailboxBuffer( |
| 143 const scoped_refptr<media::VideoCaptureDevice::Client::Buffer>& buffer, | 143 const scoped_refptr<media::VideoCaptureDevice::Client::Buffer>& buffer, |
| 144 scoped_ptr<gpu::MailboxHolder> holder, | 144 scoped_ptr<gpu::MailboxHolder> holder, |
| 145 const media::VideoFrame::ReleaseMailboxCB& release_cb, | 145 const media::VideoFrame::ReleaseMailboxCB& release_cb, |
| 146 gfx::Size dimensions) { | 146 gfx::Size dimensions) { |
| 147 return media::VideoFrame::WrapNativeTexture( | 147 return media::VideoFrame::WrapNativeTexture( |
| 148 holder.Pass(), release_cb, dimensions, gfx::Rect(dimensions), | 148 holder.Pass(), |
| 149 dimensions, base::TimeDelta(), media::VideoFrame::ReadPixelsCB(), | 149 release_cb, |
| 150 false); | 150 dimensions, |
| 151 gfx::Rect(dimensions), |
| 152 dimensions, |
| 153 base::TimeDelta(), |
| 154 media::VideoFrame::ReadPixelsCB()); |
| 151 } | 155 } |
| 152 | 156 |
| 153 TestBrowserThreadBundle bundle_; | 157 TestBrowserThreadBundle bundle_; |
| 154 scoped_ptr<MockVideoCaptureControllerEventHandler> client_a_; | 158 scoped_ptr<MockVideoCaptureControllerEventHandler> client_a_; |
| 155 scoped_ptr<MockVideoCaptureControllerEventHandler> client_b_; | 159 scoped_ptr<MockVideoCaptureControllerEventHandler> client_b_; |
| 156 scoped_ptr<VideoCaptureController> controller_; | 160 scoped_ptr<VideoCaptureController> controller_; |
| 157 scoped_ptr<media::VideoCaptureDevice::Client> device_; | 161 scoped_ptr<media::VideoCaptureDevice::Client> device_; |
| 158 | 162 |
| 159 private: | 163 private: |
| 160 DISALLOW_COPY_AND_ASSIGN(VideoCaptureControllerTest); | 164 DISALLOW_COPY_AND_ASSIGN(VideoCaptureControllerTest); |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 device_->OnIncomingCapturedData( | 662 device_->OnIncomingCapturedData( |
| 659 static_cast<unsigned char*>(buffer.get()->data()), | 663 static_cast<unsigned char*>(buffer.get()->data()), |
| 660 buffer.get()->size(), | 664 buffer.get()->size(), |
| 661 params.requested_format, | 665 params.requested_format, |
| 662 0, | 666 0, |
| 663 base::TimeTicks()); | 667 base::TimeTicks()); |
| 664 } | 668 } |
| 665 } | 669 } |
| 666 | 670 |
| 667 } // namespace content | 671 } // namespace content |
| OLD | NEW |