| 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 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; | 411 scoped_ptr<EmbeddedWorkerDispatcher> embedded_worker_dispatcher_; |
| 412 | 412 |
| 413 // Used on the render thread and deleted by WebKit at shutdown. | 413 // Used on the render thread and deleted by WebKit at shutdown. |
| 414 blink::WebMediaStreamCenter* media_stream_center_; | 414 blink::WebMediaStreamCenter* media_stream_center_; |
| 415 | 415 |
| 416 // Used on the renderer and IPC threads. | 416 // Used on the renderer and IPC threads. |
| 417 scoped_refptr<DBMessageFilter> db_message_filter_; | 417 scoped_refptr<DBMessageFilter> db_message_filter_; |
| 418 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; | 418 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; |
| 419 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 419 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
| 420 scoped_refptr<MIDIMessageFilter> midi_message_filter_; | 420 scoped_refptr<MIDIMessageFilter> midi_message_filter_; |
| 421 |
| 421 #if defined(OS_ANDROID) | 422 #if defined(OS_ANDROID) |
| 422 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; | 423 scoped_refptr<RendererDemuxerAndroid> renderer_demuxer_; |
| 423 #endif | 424 #endif |
| 424 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; | 425 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; |
| 425 | 426 |
| 426 scoped_ptr<MediaStreamDependencyFactory> media_stream_factory_; | 427 scoped_ptr<MediaStreamDependencyFactory> media_stream_factory_; |
| 427 | 428 |
| 428 // This is used to communicate to the browser process the status | 429 // This is used to communicate to the browser process the status |
| 429 // of all the peer connections created in the renderer. | 430 // of all the peer connections created in the renderer. |
| 430 scoped_ptr<PeerConnectionTracker> peer_connection_tracker_; | 431 scoped_ptr<PeerConnectionTracker> peer_connection_tracker_; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 // multiple threads. Current allocation mechanism for IOSurface | 512 // multiple threads. Current allocation mechanism for IOSurface |
| 512 // backed GpuMemoryBuffers prevent this. crbug.com/325045 | 513 // backed GpuMemoryBuffers prevent this. crbug.com/325045 |
| 513 base::ThreadChecker allocate_gpu_memory_buffer_thread_checker_; | 514 base::ThreadChecker allocate_gpu_memory_buffer_thread_checker_; |
| 514 | 515 |
| 515 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 516 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 516 }; | 517 }; |
| 517 | 518 |
| 518 } // namespace content | 519 } // namespace content |
| 519 | 520 |
| 520 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 521 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |