| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 class WebMediaStreamCenterClient; | 63 class WebMediaStreamCenterClient; |
| 64 } | 64 } |
| 65 | 65 |
| 66 namespace base { | 66 namespace base { |
| 67 class SingleThreadTaskRunner; | 67 class SingleThreadTaskRunner; |
| 68 class Thread; | 68 class Thread; |
| 69 } | 69 } |
| 70 | 70 |
| 71 namespace cc { | 71 namespace cc { |
| 72 class BeginFrameSource; | 72 class BeginFrameSource; |
| 73 class ContextProvider; | |
| 74 class ImageSerializationProcessor; | 73 class ImageSerializationProcessor; |
| 75 class CompositorFrameSink; | 74 class CompositorFrameSink; |
| 76 class TaskGraphRunner; | 75 class TaskGraphRunner; |
| 77 } | 76 } |
| 78 | 77 |
| 79 namespace gpu { | 78 namespace gpu { |
| 80 class GpuChannelHost; | 79 class GpuChannelHost; |
| 81 } | 80 } |
| 82 | 81 |
| 83 namespace IPC { | 82 namespace IPC { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 109 class ChildGpuMemoryBufferManager; | 108 class ChildGpuMemoryBufferManager; |
| 110 class CompositorForwardingMessageFilter; | 109 class CompositorForwardingMessageFilter; |
| 111 class ContextProviderCommandBuffer; | 110 class ContextProviderCommandBuffer; |
| 112 class DBMessageFilter; | 111 class DBMessageFilter; |
| 113 class DevToolsAgentFilter; | 112 class DevToolsAgentFilter; |
| 114 class DomStorageDispatcher; | 113 class DomStorageDispatcher; |
| 115 class EmbeddedWorkerDispatcher; | 114 class EmbeddedWorkerDispatcher; |
| 116 class FrameSwapMessageQueue; | 115 class FrameSwapMessageQueue; |
| 117 class IndexedDBDispatcher; | 116 class IndexedDBDispatcher; |
| 118 class InputHandlerManager; | 117 class InputHandlerManager; |
| 119 class MediaStreamCenter; | |
| 120 class MemoryObserver; | 118 class MemoryObserver; |
| 121 class MidiMessageFilter; | 119 class MidiMessageFilter; |
| 122 class P2PSocketDispatcher; | 120 class P2PSocketDispatcher; |
| 123 class PeerConnectionDependencyFactory; | 121 class PeerConnectionDependencyFactory; |
| 124 class PeerConnectionTracker; | 122 class PeerConnectionTracker; |
| 125 class CategorizedWorkerPool; | 123 class CategorizedWorkerPool; |
| 126 class RenderThreadObserver; | 124 class RenderThreadObserver; |
| 127 class RendererBlinkPlatformImpl; | 125 class RendererBlinkPlatformImpl; |
| 128 class RendererGpuVideoAcceleratorFactories; | 126 class RendererGpuVideoAcceleratorFactories; |
| 129 class ResourceDispatchThrottler; | 127 class ResourceDispatchThrottler; |
| (...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 748 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 751 }; | 749 }; |
| 752 | 750 |
| 753 #if defined(COMPILER_MSVC) | 751 #if defined(COMPILER_MSVC) |
| 754 #pragma warning(pop) | 752 #pragma warning(pop) |
| 755 #endif | 753 #endif |
| 756 | 754 |
| 757 } // namespace content | 755 } // namespace content |
| 758 | 756 |
| 759 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 757 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |