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 12 matching lines...) Expand all Loading... | |
23 #include "ui/gfx/native_widget_types.h" | 23 #include "ui/gfx/native_widget_types.h" |
24 | 24 |
25 class GrContext; | 25 class GrContext; |
26 class SkBitmap; | 26 class SkBitmap; |
27 struct ViewMsg_New_Params; | 27 struct ViewMsg_New_Params; |
28 | 28 |
29 namespace WebKit { | 29 namespace WebKit { |
30 class WebGraphicsContext3D; | 30 class WebGraphicsContext3D; |
31 class WebMediaStreamCenter; | 31 class WebMediaStreamCenter; |
32 class WebMediaStreamCenterClient; | 32 class WebMediaStreamCenterClient; |
33 } | 33 } // namespace WebKit |
34 | 34 |
35 namespace base { | 35 namespace base { |
36 class MessageLoopProxy; | 36 class MessageLoopProxy; |
37 class Thread; | 37 class Thread; |
38 | 38 |
39 #if defined(OS_WIN) | 39 #if defined(OS_WIN) |
40 namespace win { | 40 namespace win { |
41 class ScopedCOMInitializer; | 41 class ScopedCOMInitializer; |
42 } | 42 } // namespace win |
43 #endif | 43 #endif |
44 } | 44 } // namespace base |
45 | 45 |
46 namespace cc { | 46 namespace cc { |
47 class ContextProvider; | 47 class ContextProvider; |
48 } | 48 } // namespace cc |
49 | |
50 namespace debug { | |
51 class TraceMemoryController; | |
piman
2013/07/12 19:15:27
nit: you don't need this any more, though you may
| |
52 } // namespace debug | |
49 | 53 |
50 namespace IPC { | 54 namespace IPC { |
51 class ForwardingMessageFilter; | 55 class ForwardingMessageFilter; |
52 } | 56 } // namespace IPC |
53 | 57 |
54 namespace media { | 58 namespace media { |
55 class AudioHardwareConfig; | 59 class AudioHardwareConfig; |
56 } | 60 } // namespace media |
57 | 61 |
58 namespace v8 { | 62 namespace v8 { |
59 class Extension; | 63 class Extension; |
60 } | 64 } // namespace v8 |
61 | 65 |
62 namespace webkit { | 66 namespace webkit { |
63 namespace gpu { | 67 namespace gpu { |
64 class GrContextForWebGraphicsContext3D; | 68 class GrContextForWebGraphicsContext3D; |
65 } | 69 } // namespace gpu |
66 } | 70 } // namespace webkit |
67 | 71 |
68 namespace content { | 72 namespace content { |
69 | 73 |
70 class AppCacheDispatcher; | 74 class AppCacheDispatcher; |
71 class AudioInputMessageFilter; | 75 class AudioInputMessageFilter; |
72 class AudioMessageFilter; | 76 class AudioMessageFilter; |
73 class AudioRendererMixerManager; | 77 class AudioRendererMixerManager; |
74 class ContextProviderCommandBuffer; | 78 class ContextProviderCommandBuffer; |
75 class DBMessageFilter; | 79 class DBMessageFilter; |
76 class DevToolsAgentFilter; | 80 class DevToolsAgentFilter; |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
471 HistogramCustomizer histogram_customizer_; | 475 HistogramCustomizer histogram_customizer_; |
472 | 476 |
473 scoped_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 477 scoped_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
474 | 478 |
475 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 479 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
476 }; | 480 }; |
477 | 481 |
478 } // namespace content | 482 } // namespace content |
479 | 483 |
480 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 484 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |