| 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 DBMessageFilter; | |
| 26 class SkBitmap; | 25 class SkBitmap; |
| 27 class WebDatabaseObserverImpl; | 26 class WebDatabaseObserverImpl; |
| 28 struct ViewMsg_New_Params; | 27 struct ViewMsg_New_Params; |
| 29 | 28 |
| 30 namespace WebKit { | 29 namespace WebKit { |
| 31 class WebMediaStreamCenter; | 30 class WebMediaStreamCenter; |
| 32 class WebMediaStreamCenterClient; | 31 class WebMediaStreamCenterClient; |
| 33 } | 32 } |
| 34 | 33 |
| 35 namespace base { | 34 namespace base { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 51 class Extension; | 50 class Extension; |
| 52 } | 51 } |
| 53 | 52 |
| 54 namespace content { | 53 namespace content { |
| 55 | 54 |
| 56 class AppCacheDispatcher; | 55 class AppCacheDispatcher; |
| 57 class AudioInputMessageFilter; | 56 class AudioInputMessageFilter; |
| 58 class AudioMessageFilter; | 57 class AudioMessageFilter; |
| 59 class AudioRendererMixerManager; | 58 class AudioRendererMixerManager; |
| 60 class CompositorThread; | 59 class CompositorThread; |
| 60 class DBMessageFilter; |
| 61 class DevToolsAgentFilter; | 61 class DevToolsAgentFilter; |
| 62 class DomStorageDispatcher; | 62 class DomStorageDispatcher; |
| 63 class GpuChannelHost; | 63 class GpuChannelHost; |
| 64 class IndexedDBDispatcher; | 64 class IndexedDBDispatcher; |
| 65 class MediaStreamCenter; | 65 class MediaStreamCenter; |
| 66 class MediaStreamDependencyFactory; | 66 class MediaStreamDependencyFactory; |
| 67 class P2PSocketDispatcher; | 67 class P2PSocketDispatcher; |
| 68 class RendererWebKitPlatformSupportImpl; | 68 class RendererWebKitPlatformSupportImpl; |
| 69 class RenderProcessObserver; | 69 class RenderProcessObserver; |
| 70 class VideoCaptureImplManager; | 70 class VideoCaptureImplManager; |
| (...skipping 315 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 |