| 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 29 matching lines...) Expand all Loading... |
| 40 namespace win { | 40 namespace win { |
| 41 class ScopedCOMInitializer; | 41 class ScopedCOMInitializer; |
| 42 } | 42 } |
| 43 #endif | 43 #endif |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace cc { | 46 namespace cc { |
| 47 class ContextProvider; | 47 class ContextProvider; |
| 48 } | 48 } |
| 49 | 49 |
| 50 namespace debug { |
| 51 class TraceMemoryTraceLogObserver; |
| 52 } |
| 53 |
| 50 namespace IPC { | 54 namespace IPC { |
| 51 class ForwardingMessageFilter; | 55 class ForwardingMessageFilter; |
| 52 } | 56 } |
| 53 | 57 |
| 54 namespace media { | 58 namespace media { |
| 55 class AudioHardwareConfig; | 59 class AudioHardwareConfig; |
| 56 } | 60 } |
| 57 | 61 |
| 58 namespace v8 { | 62 namespace v8 { |
| 59 class Extension; | 63 class Extension; |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 | 456 |
| 453 class GpuVDAContextLostCallback; | 457 class GpuVDAContextLostCallback; |
| 454 scoped_ptr<GpuVDAContextLostCallback> context_lost_cb_; | 458 scoped_ptr<GpuVDAContextLostCallback> context_lost_cb_; |
| 455 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> gpu_vda_context3d_; | 459 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> gpu_vda_context3d_; |
| 456 | 460 |
| 457 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 461 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
| 458 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 462 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
| 459 | 463 |
| 460 HistogramCustomizer histogram_customizer_; | 464 HistogramCustomizer histogram_customizer_; |
| 461 | 465 |
| 466 // Observes trace events being enabled for memory tracking. |
| 467 scoped_ptr<base::debug::TraceMemoryTraceLogObserver> trace_memory_observer_; |
| 468 |
| 462 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 469 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 463 }; | 470 }; |
| 464 | 471 |
| 465 } // namespace content | 472 } // namespace content |
| 466 | 473 |
| 467 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 474 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |