| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 class Extension; | 78 class Extension; |
| 79 } | 79 } |
| 80 | 80 |
| 81 namespace content { | 81 namespace content { |
| 82 | 82 |
| 83 class AppCacheDispatcher; | 83 class AppCacheDispatcher; |
| 84 class AecDumpMessageFilter; | 84 class AecDumpMessageFilter; |
| 85 class AudioInputMessageFilter; | 85 class AudioInputMessageFilter; |
| 86 class AudioMessageFilter; | 86 class AudioMessageFilter; |
| 87 class AudioRendererMixerManager; | 87 class AudioRendererMixerManager; |
| 88 class BluetoothMessageFilter; |
| 88 class BrowserPluginManager; | 89 class BrowserPluginManager; |
| 89 class CacheStorageDispatcher; | 90 class CacheStorageDispatcher; |
| 90 class CompositorForwardingMessageFilter; | 91 class CompositorForwardingMessageFilter; |
| 91 class ContextProviderCommandBuffer; | 92 class ContextProviderCommandBuffer; |
| 92 class DBMessageFilter; | 93 class DBMessageFilter; |
| 93 class DevToolsAgentFilter; | 94 class DevToolsAgentFilter; |
| 94 class DomStorageDispatcher; | 95 class DomStorageDispatcher; |
| 95 class EmbeddedWorkerDispatcher; | 96 class EmbeddedWorkerDispatcher; |
| 96 class GpuChannelHost; | 97 class GpuChannelHost; |
| 97 class IndexedDBDispatcher; | 98 class IndexedDBDispatcher; |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 571 scoped_refptr<base::SingleThreadTaskRunner> compositor_task_runner_; | 572 scoped_refptr<base::SingleThreadTaskRunner> compositor_task_runner_; |
| 572 | 573 |
| 573 // Pool of workers used for raster operations (e.g., tile rasterization). | 574 // Pool of workers used for raster operations (e.g., tile rasterization). |
| 574 scoped_refptr<RasterWorkerPool> raster_worker_pool_; | 575 scoped_refptr<RasterWorkerPool> raster_worker_pool_; |
| 575 | 576 |
| 576 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; | 577 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; |
| 577 scoped_refptr<IPC::MessageFilter> input_event_filter_; | 578 scoped_refptr<IPC::MessageFilter> input_event_filter_; |
| 578 scoped_ptr<InputHandlerManager> input_handler_manager_; | 579 scoped_ptr<InputHandlerManager> input_handler_manager_; |
| 579 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; | 580 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; |
| 580 | 581 |
| 582 scoped_refptr<BluetoothMessageFilter> bluetooth_message_filter_; |
| 583 |
| 581 scoped_refptr<cc_blink::ContextProviderWebContext> | 584 scoped_refptr<cc_blink::ContextProviderWebContext> |
| 582 shared_main_thread_contexts_; | 585 shared_main_thread_contexts_; |
| 583 | 586 |
| 584 base::ObserverList<RenderProcessObserver> observers_; | 587 base::ObserverList<RenderProcessObserver> observers_; |
| 585 | 588 |
| 586 scoped_refptr<ContextProviderCommandBuffer> gpu_va_context_provider_; | 589 scoped_refptr<ContextProviderCommandBuffer> gpu_va_context_provider_; |
| 587 | 590 |
| 588 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 591 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 589 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 592 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 590 | 593 |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 652 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 650 }; | 653 }; |
| 651 | 654 |
| 652 #if defined(COMPILER_MSVC) | 655 #if defined(COMPILER_MSVC) |
| 653 #pragma warning(pop) | 656 #pragma warning(pop) |
| 654 #endif | 657 #endif |
| 655 | 658 |
| 656 } // namespace content | 659 } // namespace content |
| 657 | 660 |
| 658 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 661 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |