OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 13 matching lines...) Expand all Loading... |
24 | 24 |
25 class AppCacheDispatcher; | 25 class AppCacheDispatcher; |
26 class AudioInputMessageFilter; | 26 class AudioInputMessageFilter; |
27 class AudioMessageFilter; | 27 class AudioMessageFilter; |
28 class CompositorThread; | 28 class CompositorThread; |
29 class DBMessageFilter; | 29 class DBMessageFilter; |
30 class DevToolsAgentFilter; | 30 class DevToolsAgentFilter; |
31 struct DOMStorageMsg_Event_Params; | 31 struct DOMStorageMsg_Event_Params; |
32 class GpuChannelHost; | 32 class GpuChannelHost; |
33 class IndexedDBDispatcher; | 33 class IndexedDBDispatcher; |
34 class RendererHistogram; | |
35 class RendererWebKitPlatformSupportImpl; | 34 class RendererWebKitPlatformSupportImpl; |
36 class SkBitmap; | 35 class SkBitmap; |
37 class VideoCaptureImplManager; | 36 class VideoCaptureImplManager; |
38 struct ViewMsg_New_Params; | 37 struct ViewMsg_New_Params; |
39 class WebDatabaseObserverImpl; | 38 class WebDatabaseObserverImpl; |
40 | 39 |
41 namespace WebKit { | 40 namespace WebKit { |
42 class WebStorageEventDispatcher; | 41 class WebStorageEventDispatcher; |
43 } | 42 } |
44 | 43 |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 std::set<std::string> v8_extensions_; | 233 std::set<std::string> v8_extensions_; |
235 | 234 |
236 scoped_ptr<CompositorThread> compositor_thread_; | 235 scoped_ptr<CompositorThread> compositor_thread_; |
237 | 236 |
238 ObserverList<content::RenderProcessObserver> observers_; | 237 ObserverList<content::RenderProcessObserver> observers_; |
239 | 238 |
240 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 239 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
241 }; | 240 }; |
242 | 241 |
243 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 242 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |