Index: media/video/capture/mac/video_capture_device_mac.mm |
diff --git a/media/video/capture/mac/video_capture_device_mac.mm b/media/video/capture/mac/video_capture_device_mac.mm |
index b353b1257728d663f0272538ffd4b6e68a112e7c..60b193ed84f0b80e7d48a35002181cef6312d110 100644 |
--- a/media/video/capture/mac/video_capture_device_mac.mm |
+++ b/media/video/capture/mac/video_capture_device_mac.mm |
@@ -208,10 +208,17 @@ bool VideoCaptureDeviceMac::Init() { |
DCHECK_EQ(loop_proxy_, base::MessageLoopProxy::current()); |
DCHECK_EQ(state_, kNotInitialized); |
+ // TODO(mcasas): The following check might not be necessary; if the device has |
+ // disappeared after enumeration and before coming here, opening would just |
+ // fail but not necessarily produce a crash. |
Names device_names; |
GetDeviceNames(&device_names); |
- Name* found = device_names.FindById(device_name_.id()); |
- if (!found) |
+ Names::iterator it = device_names.begin(); |
+ for (; it != device_names.end(); ++it) { |
+ if (it->id() == device_name_.id()) |
+ break; |
+ } |
+ if (it == device_names.end()) |
return false; |
capture_device_ = |