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 dd22a6499168864c15f9298c1e7eb535ec006995..b037a1b74707159e545a5f9c390325759d7adf0f 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<std::string, 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<std::string, 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<std::string, uint32>()); |
} |
} |