diff options
Diffstat (limited to 'content/browser')
-rw-r--r-- | content/browser/renderer_host/media/video_capture_controller_event_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/renderer_host/media/video_capture_controller_event_handler.cc b/content/browser/renderer_host/media/video_capture_controller_event_handler.cc index 61ccc4a..e6edc41 100644 --- a/content/browser/renderer_host/media/video_capture_controller_event_handler.cc +++ b/content/browser/renderer_host/media/video_capture_controller_event_handler.cc @@ -11,5 +11,5 @@ VideoCaptureControllerID::VideoCaptureControllerID(int32 rid, int did) bool VideoCaptureControllerID::operator<( const VideoCaptureControllerID& vc) const { - return this->routing_id < vc.routing_id && this->device_id < vc.device_id; + return this->routing_id < vc.routing_id || this->device_id < vc.device_id; } |