| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 class PeerConnectionDependencyFactory; | 111 class PeerConnectionDependencyFactory; |
| 112 class PeerConnectionTracker; | 112 class PeerConnectionTracker; |
| 113 class RasterWorkerPool; | 113 class RasterWorkerPool; |
| 114 class RenderThreadObserver; | 114 class RenderThreadObserver; |
| 115 class RendererBlinkPlatformImpl; | 115 class RendererBlinkPlatformImpl; |
| 116 class RendererDemuxerAndroid; | 116 class RendererDemuxerAndroid; |
| 117 class RendererGpuVideoAcceleratorFactories; | 117 class RendererGpuVideoAcceleratorFactories; |
| 118 class ResourceDispatchThrottler; | 118 class ResourceDispatchThrottler; |
| 119 class V8SamplingProfiler; | 119 class V8SamplingProfiler; |
| 120 class VideoCaptureImplManager; | 120 class VideoCaptureImplManager; |
| 121 class WebGraphicsContext3DCommandBufferImpl; | |
| 122 class WebRTCIdentityService; | 121 class WebRTCIdentityService; |
| 123 | 122 |
| 124 #if defined(OS_ANDROID) | 123 #if defined(OS_ANDROID) |
| 125 class StreamTextureFactory; | 124 class StreamTextureFactory; |
| 126 class SynchronousCompositorFilter; | 125 class SynchronousCompositorFilter; |
| 127 #endif | 126 #endif |
| 128 | 127 |
| 129 #if defined(COMPILER_MSVC) | 128 #if defined(COMPILER_MSVC) |
| 130 // See explanation for other RenderViewHostImpl which is the same issue. | 129 // See explanation for other RenderViewHostImpl which is the same issue. |
| 131 #pragma warning(push) | 130 #pragma warning(push) |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 705 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 707 }; | 706 }; |
| 708 | 707 |
| 709 #if defined(COMPILER_MSVC) | 708 #if defined(COMPILER_MSVC) |
| 710 #pragma warning(pop) | 709 #pragma warning(pop) |
| 711 #endif | 710 #endif |
| 712 | 711 |
| 713 } // namespace content | 712 } // namespace content |
| 714 | 713 |
| 715 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 714 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |