| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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.h" | 5 #include "content/renderer/media/video_capture_impl.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/stl_util.h" | 8 #include "base/stl_util.h" |
| 9 #include "content/child/child_process.h" | 9 #include "content/child/child_process.h" |
| 10 #include "content/common/media/video_capture_messages.h" | 10 #include "content/common/media/video_capture_messages.h" |
| 11 #include "media/base/bind_to_loop.h" | 11 #include "media/base/bind_to_current_loop.h" |
| 12 #include "media/base/limits.h" | 12 #include "media/base/limits.h" |
| 13 #include "media/base/video_frame.h" | 13 #include "media/base/video_frame.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 class VideoCaptureImpl::ClientBuffer | 17 class VideoCaptureImpl::ClientBuffer |
| 18 : public base::RefCountedThreadSafe<ClientBuffer> { | 18 : public base::RefCountedThreadSafe<ClientBuffer> { |
| 19 public: | 19 public: |
| 20 ClientBuffer(scoped_ptr<base::SharedMemory> buffer, | 20 ClientBuffer(scoped_ptr<base::SharedMemory> buffer, |
| 21 size_t buffer_size) | 21 size_t buffer_size) |
| (...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 if (it != clients->end()) { | 420 if (it != clients->end()) { |
| 421 handler->OnStopped(this); | 421 handler->OnStopped(this); |
| 422 handler->OnRemoved(this); | 422 handler->OnRemoved(this); |
| 423 clients->erase(it); | 423 clients->erase(it); |
| 424 found = true; | 424 found = true; |
| 425 } | 425 } |
| 426 return found; | 426 return found; |
| 427 } | 427 } |
| 428 | 428 |
| 429 } // namespace content | 429 } // namespace content |
| OLD | NEW |