| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/renderer/media/video_capture_impl_manager.h" | 5 #include "content/renderer/media/video_capture_impl_manager.h" |
| 6 | 6 |
| 7 #include "base/memory/singleton.h" | 7 #include "base/memory/singleton.h" |
| 8 #include "content/common/child_process.h" | 8 #include "content/common/child_process.h" |
| 9 #include "content/common/child_thread.h" | 9 #include "content/common/child_thread.h" |
| 10 #include "content/common/video_capture_messages.h" | 10 #include "content/common/video_capture_messages.h" |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 } | 106 } |
| 107 | 107 |
| 108 VideoCaptureImplManager::Device::Device() : vc(NULL) {} | 108 VideoCaptureImplManager::Device::Device() : vc(NULL) {} |
| 109 | 109 |
| 110 VideoCaptureImplManager::Device::Device( | 110 VideoCaptureImplManager::Device::Device( |
| 111 VideoCaptureImpl* device, | 111 VideoCaptureImpl* device, |
| 112 media::VideoCapture::EventHandler* handler) | 112 media::VideoCapture::EventHandler* handler) |
| 113 : vc(device) { | 113 : vc(device) { |
| 114 clients.push_front(handler); | 114 clients.push_front(handler); |
| 115 } | 115 } |
| 116 |
| 117 VideoCaptureImplManager::Device::~Device() {} |
| 118 |
| OLD | NEW |