| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 class IndexedDBDispatcher; | 35 class IndexedDBDispatcher; |
| 36 class RendererWebKitPlatformSupportImpl; | 36 class RendererWebKitPlatformSupportImpl; |
| 37 class SkBitmap; | 37 class SkBitmap; |
| 38 class VideoCaptureImplManager; | 38 class VideoCaptureImplManager; |
| 39 struct ViewMsg_New_Params; | 39 struct ViewMsg_New_Params; |
| 40 class WebDatabaseObserverImpl; | 40 class WebDatabaseObserverImpl; |
| 41 | 41 |
| 42 namespace WebKit { | 42 namespace WebKit { |
| 43 class WebMediaStreamCenter; | 43 class WebMediaStreamCenter; |
| 44 class WebMediaStreamCenterClient; | 44 class WebMediaStreamCenterClient; |
| 45 class WebStorageEventDispatcher; | |
| 46 } | 45 } |
| 47 | 46 |
| 48 namespace base { | 47 namespace base { |
| 49 class MessageLoopProxy; | 48 class MessageLoopProxy; |
| 50 class Thread; | 49 class Thread; |
| 51 namespace win { | 50 namespace win { |
| 52 class ScopedCOMInitializer; | 51 class ScopedCOMInitializer; |
| 53 } | 52 } |
| 54 } | 53 } |
| 55 | 54 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 void OnNetworkStateChanged(bool online); | 214 void OnNetworkStateChanged(bool online); |
| 216 void OnGetAccessibilityTree(); | 215 void OnGetAccessibilityTree(); |
| 217 void OnTempCrashWithData(const GURL& data); | 216 void OnTempCrashWithData(const GURL& data); |
| 218 | 217 |
| 219 void IdleHandlerInForegroundTab(); | 218 void IdleHandlerInForegroundTab(); |
| 220 | 219 |
| 221 // These objects live solely on the render thread. | 220 // These objects live solely on the render thread. |
| 222 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; | 221 scoped_ptr<AppCacheDispatcher> appcache_dispatcher_; |
| 223 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; | 222 scoped_ptr<IndexedDBDispatcher> main_thread_indexed_db_dispatcher_; |
| 224 scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_; | 223 scoped_ptr<RendererWebKitPlatformSupportImpl> webkit_platform_support_; |
| 225 scoped_ptr<WebKit::WebStorageEventDispatcher> dom_storage_event_dispatcher_; | |
| 226 | 224 |
| 227 // Used on the render thread and deleted by WebKit at shutdown. | 225 // Used on the render thread and deleted by WebKit at shutdown. |
| 228 content::MediaStreamCenter* media_stream_center_; | 226 content::MediaStreamCenter* media_stream_center_; |
| 229 | 227 |
| 230 // Used on the renderer and IPC threads. | 228 // Used on the renderer and IPC threads. |
| 231 scoped_refptr<DBMessageFilter> db_message_filter_; | 229 scoped_refptr<DBMessageFilter> db_message_filter_; |
| 232 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; | 230 scoped_refptr<AudioInputMessageFilter> audio_input_message_filter_; |
| 233 scoped_refptr<AudioMessageFilter> audio_message_filter_; | 231 scoped_refptr<AudioMessageFilter> audio_message_filter_; |
| 234 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; | 232 scoped_refptr<DevToolsAgentFilter> devtools_agent_message_filter_; |
| 235 | 233 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 | 272 |
| 275 bool compositor_initialized_; | 273 bool compositor_initialized_; |
| 276 scoped_ptr<CompositorThread> compositor_thread_; | 274 scoped_ptr<CompositorThread> compositor_thread_; |
| 277 | 275 |
| 278 ObserverList<content::RenderProcessObserver> observers_; | 276 ObserverList<content::RenderProcessObserver> observers_; |
| 279 | 277 |
| 280 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 278 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 281 }; | 279 }; |
| 282 | 280 |
| 283 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 281 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |