diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-02 01:03:17 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-02 01:03:17 +0000 |
commit | 164a3d27e68e8ac6dfe0df99e422770da98c6ef2 (patch) | |
tree | bd3eb17279ee04c2bba15073a4a77a4569596010 /content/browser/renderer_host/video_capture_controller_event_handler.h | |
parent | bcabd0b1dafba015347990e52a8019e55ad72b6e (diff) | |
download | chromium_src-164a3d27e68e8ac6dfe0df99e422770da98c6ef2.zip chromium_src-164a3d27e68e8ac6dfe0df99e422770da98c6ef2.tar.gz chromium_src-164a3d27e68e8ac6dfe0df99e422770da98c6ef2.tar.bz2 |
Fix some style issues with VideoCaptureControllerID.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/7104030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87566 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/renderer_host/video_capture_controller_event_handler.h')
-rw-r--r-- | content/browser/renderer_host/video_capture_controller_event_handler.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/content/browser/renderer_host/video_capture_controller_event_handler.h b/content/browser/renderer_host/video_capture_controller_event_handler.h index 74f4d24..0467941 100644 --- a/content/browser/renderer_host/video_capture_controller_event_handler.h +++ b/content/browser/renderer_host/video_capture_controller_event_handler.h @@ -12,10 +12,8 @@ // ID used for identifying an object of VideoCaptureController. struct VideoCaptureControllerID { - public: - VideoCaptureControllerID(); - VideoCaptureControllerID(int32 rid, int did); - ~VideoCaptureControllerID(); + VideoCaptureControllerID(int32 routing_id, int device_id); + bool operator<(const VideoCaptureControllerID& vc) const; int32 routing_id; |