Index: content/browser/renderer_host/media/video_capture_controller_event_handler.cc |
=================================================================== |
--- content/browser/renderer_host/media/video_capture_controller_event_handler.cc (revision 107671) |
+++ content/browser/renderer_host/media/video_capture_controller_event_handler.cc (working copy) |
@@ -12,3 +12,8 @@ |
const VideoCaptureControllerID& vc) const { |
return this->device_id < vc.device_id; |
} |
+ |
+bool VideoCaptureControllerID::operator==( |
+ const VideoCaptureControllerID& vc) const { |
+ return this->device_id == vc.device_id; |
+} |