Index: content/browser/renderer_host/media/video_capture_controller_event_handler.h |
=================================================================== |
--- content/browser/renderer_host/media/video_capture_controller_event_handler.h (revision 105502) |
+++ content/browser/renderer_host/media/video_capture_controller_event_handler.h (working copy) |
@@ -11,9 +11,10 @@ |
// ID used for identifying an object of VideoCaptureController. |
struct CONTENT_EXPORT VideoCaptureControllerID { |
scherkus (not reviewing)
2011/10/19 18:02:21
I forget the history of this, but why is this not
wjia(left Chromium)
2011/10/21 00:56:13
Originally, there was a routing_id here. Since mes
|
- VideoCaptureControllerID(int device_id); |
+ explicit VideoCaptureControllerID(int device_id); |
bool operator<(const VideoCaptureControllerID& vc) const; |
+ bool operator==(const VideoCaptureControllerID& vc) const; |
int device_id; |
}; |