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 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
567 ScopedVector<base::SimpleThread> compositor_raster_threads_; | 567 ScopedVector<base::SimpleThread> compositor_raster_threads_; |
568 | 568 |
569 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; | 569 base::CancelableCallback<void(const IPC::Message&)> main_input_callback_; |
570 scoped_refptr<IPC::MessageFilter> input_event_filter_; | 570 scoped_refptr<IPC::MessageFilter> input_event_filter_; |
571 scoped_ptr<InputHandlerManager> input_handler_manager_; | 571 scoped_ptr<InputHandlerManager> input_handler_manager_; |
572 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; | 572 scoped_refptr<CompositorForwardingMessageFilter> compositor_message_filter_; |
573 | 573 |
574 scoped_refptr<cc_blink::ContextProviderWebContext> | 574 scoped_refptr<cc_blink::ContextProviderWebContext> |
575 shared_main_thread_contexts_; | 575 shared_main_thread_contexts_; |
576 | 576 |
577 ObserverList<RenderProcessObserver> observers_; | 577 base::ObserverList<RenderProcessObserver> observers_; |
578 | 578 |
579 scoped_refptr<ContextProviderCommandBuffer> gpu_va_context_provider_; | 579 scoped_refptr<ContextProviderCommandBuffer> gpu_va_context_provider_; |
580 | 580 |
581 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 581 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
582 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 582 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
583 | 583 |
584 HistogramCustomizer histogram_customizer_; | 584 HistogramCustomizer histogram_customizer_; |
585 | 585 |
586 scoped_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 586 scoped_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
587 | 587 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 645 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
646 }; | 646 }; |
647 | 647 |
648 #if defined(COMPILER_MSVC) | 648 #if defined(COMPILER_MSVC) |
649 #pragma warning(pop) | 649 #pragma warning(pop) |
650 #endif | 650 #endif |
651 | 651 |
652 } // namespace content | 652 } // namespace content |
653 | 653 |
654 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 654 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |