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 // Implementation notes: This needs to work on a variety of hardware | 5 // Implementation notes: This needs to work on a variety of hardware |
6 // configurations where the speed of the CPU and GPU greatly affect overall | 6 // configurations where the speed of the CPU and GPU greatly affect overall |
7 // performance. Spanning several threads, the process of capturing has been | 7 // performance. Spanning several threads, the process of capturing has been |
8 // split up into four conceptual stages: | 8 // split up into four conceptual stages: |
9 // | 9 // |
10 // 1. Reserve Buffer: Before a frame can be captured, a slot in the consumer's | 10 // 1. Reserve Buffer: Before a frame can be captured, a slot in the consumer's |
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
866 } | 866 } |
867 | 867 |
868 RenderWidgetHost* CaptureMachine::GetTarget() { | 868 RenderWidgetHost* CaptureMachine::GetTarget() { |
869 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 869 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
870 if (!web_contents()) | 870 if (!web_contents()) |
871 return NULL; | 871 return NULL; |
872 | 872 |
873 RenderWidgetHost* rwh = NULL; | 873 RenderWidgetHost* rwh = NULL; |
874 if (fullscreen_widget_id_ != MSG_ROUTING_NONE) { | 874 if (fullscreen_widget_id_ != MSG_ROUTING_NONE) { |
875 RenderProcessHost* process = web_contents()->GetRenderProcessHost(); | 875 RenderProcessHost* process = web_contents()->GetRenderProcessHost(); |
876 rwh = process ? process->GetRenderWidgetHostByID(fullscreen_widget_id_) | 876 if (process) |
877 : NULL; | 877 rwh = RenderWidgetHost::FromID(process->GetID(), fullscreen_widget_id_); |
878 } else { | 878 } else { |
879 rwh = web_contents()->GetRenderViewHost(); | 879 rwh = web_contents()->GetRenderViewHost(); |
880 } | 880 } |
881 | 881 |
882 return rwh; | 882 return rwh; |
883 } | 883 } |
884 | 884 |
885 void CaptureMachine::DidCopyFromBackingStore( | 885 void CaptureMachine::DidCopyFromBackingStore( |
886 const base::Time& start_time, | 886 const base::Time& start_time, |
887 const scoped_refptr<media::VideoFrame>& target, | 887 const scoped_refptr<media::VideoFrame>& target, |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1264 void WebContentsVideoCaptureDevice::DeAllocate() { | 1264 void WebContentsVideoCaptureDevice::DeAllocate() { |
1265 impl_->DeAllocate(); | 1265 impl_->DeAllocate(); |
1266 } | 1266 } |
1267 | 1267 |
1268 const media::VideoCaptureDevice::Name& | 1268 const media::VideoCaptureDevice::Name& |
1269 WebContentsVideoCaptureDevice::device_name() { | 1269 WebContentsVideoCaptureDevice::device_name() { |
1270 return device_name_; | 1270 return device_name_; |
1271 } | 1271 } |
1272 | 1272 |
1273 } // namespace content | 1273 } // namespace content |
OLD | NEW |