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 28 matching lines...) Expand all Loading... | |
39 namespace win { | 39 namespace win { |
40 class ScopedCOMInitializer; | 40 class ScopedCOMInitializer; |
41 } | 41 } |
42 #endif | 42 #endif |
43 } | 43 } |
44 | 44 |
45 namespace cc { | 45 namespace cc { |
46 class ContextProvider; | 46 class ContextProvider; |
47 } | 47 } |
48 | 48 |
49 namespace debug { | |
50 class TraceMemoryController; | |
51 } | |
jar (doing other things)
2013/07/12 01:24:26
nit: // namespace debug
Same above and below.
James Cook
2013/07/12 17:40:27
Done, but again, this seems inconsistent with the
| |
52 | |
49 namespace IPC { | 53 namespace IPC { |
50 class ForwardingMessageFilter; | 54 class ForwardingMessageFilter; |
51 } | 55 } |
52 | 56 |
53 namespace media { | 57 namespace media { |
54 class AudioHardwareConfig; | 58 class AudioHardwareConfig; |
55 } | 59 } |
56 | 60 |
57 namespace v8 { | 61 namespace v8 { |
58 class Extension; | 62 class Extension; |
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
460 | 464 |
461 class GpuVDAContextLostCallback; | 465 class GpuVDAContextLostCallback; |
462 scoped_ptr<GpuVDAContextLostCallback> context_lost_cb_; | 466 scoped_ptr<GpuVDAContextLostCallback> context_lost_cb_; |
463 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> gpu_vda_context3d_; | 467 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> gpu_vda_context3d_; |
464 | 468 |
465 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 469 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
466 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 470 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
467 | 471 |
468 HistogramCustomizer histogram_customizer_; | 472 HistogramCustomizer histogram_customizer_; |
469 | 473 |
474 // Observes trace events being enabled for memory tracking. | |
475 scoped_ptr<base::debug::TraceMemoryController> trace_memory_controller_; | |
476 | |
470 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 477 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
471 }; | 478 }; |
472 | 479 |
473 } // namespace content | 480 } // namespace content |
474 | 481 |
475 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 482 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |