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> |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 class DomStorageDispatcher; | 77 class DomStorageDispatcher; |
78 class GpuChannelHost; | 78 class GpuChannelHost; |
79 class IndexedDBDispatcher; | 79 class IndexedDBDispatcher; |
80 class InputEventFilter; | 80 class InputEventFilter; |
81 class InputHandlerManager; | 81 class InputHandlerManager; |
82 class MediaStreamCenter; | 82 class MediaStreamCenter; |
83 class MediaStreamDependencyFactory; | 83 class MediaStreamDependencyFactory; |
84 class P2PSocketDispatcher; | 84 class P2PSocketDispatcher; |
85 class PeerConnectionTracker; | 85 class PeerConnectionTracker; |
86 class RendererWebKitPlatformSupportImpl; | 86 class RendererWebKitPlatformSupportImpl; |
| 87 class RenderProcessDiscardableMemoryProvider; |
87 class RenderProcessObserver; | 88 class RenderProcessObserver; |
88 class VideoCaptureImplManager; | 89 class VideoCaptureImplManager; |
89 class WebDatabaseObserverImpl; | 90 class WebDatabaseObserverImpl; |
90 class WebGraphicsContext3DCommandBufferImpl; | 91 class WebGraphicsContext3DCommandBufferImpl; |
91 | 92 |
92 // The RenderThreadImpl class represents a background thread where RenderView | 93 // The RenderThreadImpl class represents a background thread where RenderView |
93 // instances live. The RenderThread supports an API that is used by its | 94 // instances live. The RenderThread supports an API that is used by its |
94 // consumer to talk indirectly to the RenderViews and supporting objects. | 95 // consumer to talk indirectly to the RenderViews and supporting objects. |
95 // Likewise, it provides an API for the RenderViews to talk back to the main | 96 // Likewise, it provides an API for the RenderViews to talk back to the main |
96 // process (i.e., their corresponding WebContentsImpl). | 97 // process (i.e., their corresponding WebContentsImpl). |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; | 460 scoped_ptr<media::AudioHardwareConfig> audio_hardware_config_; |
460 | 461 |
461 HistogramCustomizer histogram_customizer_; | 462 HistogramCustomizer histogram_customizer_; |
462 | 463 |
463 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 464 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
464 }; | 465 }; |
465 | 466 |
466 } // namespace content | 467 } // namespace content |
467 | 468 |
468 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 469 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |