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 16 matching lines...) Expand all Loading... | |
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 class FilePath; | 31 class FilePath; |
32 class GpuChannelHost; | 32 class GpuChannelHost; |
33 class IndexedDBDispatcher; | 33 class IndexedDBDispatcher; |
34 class RendererHistogram; | 34 class RendererHistogram; |
35 class RendererHistogramSnapshots; | 35 class RendererHistogramSnapshots; |
36 class RendererNetPredictor; | 36 class RendererNetPredictor; |
37 class RendererTracking; | |
jar (doing other things)
2011/11/03 06:23:15
Is this needed in this file anymore?
ramant (doing other things)
2011/11/03 21:51:39
Done.
| |
37 class RendererWebKitPlatformSupportImpl; | 38 class RendererWebKitPlatformSupportImpl; |
38 class SkBitmap; | 39 class SkBitmap; |
39 class VideoCaptureImplManager; | 40 class VideoCaptureImplManager; |
40 class WebDatabaseObserverImpl; | 41 class WebDatabaseObserverImpl; |
41 | 42 |
42 struct RendererPreferences; | 43 struct RendererPreferences; |
43 struct DOMStorageMsg_Event_Params; | 44 struct DOMStorageMsg_Event_Params; |
44 struct GPUInfo; | 45 struct GPUInfo; |
45 struct ViewMsg_New_Params; | 46 struct ViewMsg_New_Params; |
46 struct WebPreferences; | 47 struct WebPreferences; |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
245 std::set<std::string> v8_extensions_; | 246 std::set<std::string> v8_extensions_; |
246 | 247 |
247 scoped_ptr<CompositorThread> compositor_thread_; | 248 scoped_ptr<CompositorThread> compositor_thread_; |
248 | 249 |
249 ObserverList<content::RenderProcessObserver> observers_; | 250 ObserverList<content::RenderProcessObserver> observers_; |
250 | 251 |
251 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 252 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
252 }; | 253 }; |
253 | 254 |
254 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 255 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |