Index: content/browser/renderer_host/media/video_capture_controller_event_handler.cc |
=================================================================== |
--- content/browser/renderer_host/media/video_capture_controller_event_handler.cc (revision 89543) |
+++ content/browser/renderer_host/media/video_capture_controller_event_handler.cc (working copy) |
@@ -4,12 +4,11 @@ |
#include "content/browser/renderer_host/media/video_capture_controller_event_handler.h" |
-VideoCaptureControllerID::VideoCaptureControllerID(int32 rid, int did) |
- : routing_id(rid), |
- device_id(did) { |
+VideoCaptureControllerID::VideoCaptureControllerID(int did) |
+ : device_id(did) { |
} |
bool VideoCaptureControllerID::operator<( |
const VideoCaptureControllerID& vc) const { |
- return this->routing_id < vc.routing_id || this->device_id < vc.device_id; |
+ return this->device_id < vc.device_id; |
} |