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> |
11 | 11 |
12 #include "base/observer_list.h" | 12 #include "base/observer_list.h" |
13 #include "base/timer.h" | 13 #include "base/timer.h" |
14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
15 #include "content/common/child_process.h" | 15 #include "content/common/child_process.h" |
16 #include "content/common/child_thread.h" | 16 #include "content/common/child_thread.h" |
17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
18 #include "content/common/css_colors.h" | 18 #include "content/common/css_colors.h" |
19 #include "content/common/gpu/client/gpu_channel_host.h" | 19 #include "content/common/gpu/client/gpu_channel_host.h" |
20 #include "content/common/gpu/gpu_process_launch_causes.h" | 20 #include "content/common/gpu/gpu_process_launch_causes.h" |
21 #include "content/public/renderer/render_thread.h" | 21 #include "content/public/renderer/render_thread.h" |
22 #include "ipc/ipc_channel_proxy.h" | 22 #include "ipc/ipc_channel_proxy.h" |
23 #include "ui/gfx/native_widget_types.h" | 23 #include "ui/gfx/native_widget_types.h" |
24 | 24 |
25 class SkBitmap; | 25 class SkBitmap; |
26 class WebDatabaseObserverImpl; | |
27 struct ViewMsg_New_Params; | 26 struct ViewMsg_New_Params; |
28 | 27 |
29 namespace WebKit { | 28 namespace WebKit { |
30 class WebMediaStreamCenter; | 29 class WebMediaStreamCenter; |
31 class WebMediaStreamCenterClient; | 30 class WebMediaStreamCenterClient; |
32 } | 31 } |
33 | 32 |
34 namespace base { | 33 namespace base { |
35 class MessageLoopProxy; | 34 class MessageLoopProxy; |
36 class Thread; | 35 class Thread; |
(...skipping 24 matching lines...) Expand all Loading... |
61 class DevToolsAgentFilter; | 60 class DevToolsAgentFilter; |
62 class DomStorageDispatcher; | 61 class DomStorageDispatcher; |
63 class GpuChannelHost; | 62 class GpuChannelHost; |
64 class IndexedDBDispatcher; | 63 class IndexedDBDispatcher; |
65 class MediaStreamCenter; | 64 class MediaStreamCenter; |
66 class MediaStreamDependencyFactory; | 65 class MediaStreamDependencyFactory; |
67 class P2PSocketDispatcher; | 66 class P2PSocketDispatcher; |
68 class RendererWebKitPlatformSupportImpl; | 67 class RendererWebKitPlatformSupportImpl; |
69 class RenderProcessObserver; | 68 class RenderProcessObserver; |
70 class VideoCaptureImplManager; | 69 class VideoCaptureImplManager; |
| 70 class WebDatabaseObserverImpl; |
71 class WebGraphicsContext3DCommandBufferImpl; | 71 class WebGraphicsContext3DCommandBufferImpl; |
72 | 72 |
73 namespace old { | 73 namespace old { |
74 class BrowserPluginChannelManager; | 74 class BrowserPluginChannelManager; |
75 class BrowserPluginRegistry; | 75 class BrowserPluginRegistry; |
76 } | 76 } |
77 | 77 |
78 // The RenderThreadImpl class represents a background thread where RenderView | 78 // The RenderThreadImpl class represents a background thread where RenderView |
79 // instances live. The RenderThread supports an API that is used by its | 79 // instances live. The RenderThread supports an API that is used by its |
80 // consumer to talk indirectly to the RenderViews and supporting objects. | 80 // consumer to talk indirectly to the RenderViews and supporting objects. |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; | 386 scoped_ptr<AudioRendererMixerManager> audio_renderer_mixer_manager_; |
387 | 387 |
388 HistogramCustomizer histogram_customizer_; | 388 HistogramCustomizer histogram_customizer_; |
389 | 389 |
390 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 390 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
391 }; | 391 }; |
392 | 392 |
393 } // namespace content | 393 } // namespace content |
394 | 394 |
395 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 395 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |