| Index: content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| diff --git a/content/browser/renderer_host/media/video_capture_host_unittest.cc b/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| index bc5ed577a24c9c5047d989d6148d203fef56e816..e49a5e100fe51663748c4dac92c9d3d10889a2f7 100644
|
| --- a/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| +++ b/content/browser/renderer_host/media/video_capture_host_unittest.cc
|
| @@ -152,7 +152,8 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
| void ReturnReceivedDibs(int device_id) {
|
| int handle = GetReceivedDib();
|
| while (handle) {
|
| - this->OnReceiveEmptyBuffer(device_id, handle, std::vector<uint32>());
|
| + this->OnReceiveEmptyBuffer(
|
| + device_id, handle, std::map<uintptr_t, uint32>());
|
| handle = GetReceivedDib();
|
| }
|
| }
|
| @@ -241,7 +242,7 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
| OnBufferFilled(device_id, buffer_id, frame_format, timestamp);
|
| if (return_buffers_) {
|
| VideoCaptureHost::OnReceiveEmptyBuffer(
|
| - device_id, buffer_id, std::vector<uint32>());
|
| + device_id, buffer_id, std::map<uintptr_t, uint32>());
|
| }
|
| }
|
|
|
| @@ -254,7 +255,7 @@ class MockVideoCaptureHost : public VideoCaptureHost {
|
| device_id, buffer_id, mailbox_holder, format, timestamp);
|
| if (return_buffers_) {
|
| VideoCaptureHost::OnReceiveEmptyBuffer(
|
| - device_id, buffer_id, std::vector<uint32>());
|
| + device_id, buffer_id, std::map<uintptr_t, uint32>());
|
| }
|
| }
|
|
|
|
|