| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "net/base/network_change_notifier.h" | 43 #include "net/base/network_change_notifier.h" |
| 44 #include "third_party/WebKit/public/platform/WebConnectionType.h" | 44 #include "third_party/WebKit/public/platform/WebConnectionType.h" |
| 45 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
er.h" | 45 #include "third_party/WebKit/public/platform/scheduler/renderer/renderer_schedul
er.h" |
| 46 #include "third_party/WebKit/public/web/WebMemoryStatistics.h" | 46 #include "third_party/WebKit/public/web/WebMemoryStatistics.h" |
| 47 #include "ui/gfx/native_widget_types.h" | 47 #include "ui/gfx/native_widget_types.h" |
| 48 | 48 |
| 49 #if defined(OS_MACOSX) | 49 #if defined(OS_MACOSX) |
| 50 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" | 50 #include "third_party/WebKit/public/web/mac/WebScrollbarTheme.h" |
| 51 #endif | 51 #endif |
| 52 | 52 |
| 53 class GrContext; | |
| 54 class SkBitmap; | 53 class SkBitmap; |
| 55 struct WorkerProcessMsg_CreateWorker_Params; | 54 struct WorkerProcessMsg_CreateWorker_Params; |
| 56 | 55 |
| 57 namespace blink { | 56 namespace blink { |
| 58 namespace scheduler { | 57 namespace scheduler { |
| 59 class WebThreadBase; | 58 class WebThreadBase; |
| 60 } | 59 } |
| 61 class WebGamepads; | 60 class WebGamepads; |
| 62 class WebMediaStreamCenter; | 61 class WebMediaStreamCenter; |
| 63 class WebMediaStreamCenterClient; | 62 class WebMediaStreamCenterClient; |
| 64 } | 63 } |
| 65 | 64 |
| 66 namespace base { | 65 namespace base { |
| 67 class SingleThreadTaskRunner; | 66 class SingleThreadTaskRunner; |
| 68 class Thread; | 67 class Thread; |
| 69 } | 68 } |
| 70 | 69 |
| 71 namespace cc { | 70 namespace cc { |
| 71 class BeginFrameSource; |
| 72 class ContextProvider; | 72 class ContextProvider; |
| 73 class ImageSerializationProcessor; | 73 class ImageSerializationProcessor; |
| 74 class CompositorFrameSink; | 74 class CompositorFrameSink; |
| 75 class TaskGraphRunner; | 75 class TaskGraphRunner; |
| 76 } | 76 } |
| 77 | 77 |
| 78 namespace gpu { | 78 namespace gpu { |
| 79 class GpuChannelHost; | 79 class GpuChannelHost; |
| 80 } | 80 } |
| 81 | 81 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 111 class DBMessageFilter; | 111 class DBMessageFilter; |
| 112 class DevToolsAgentFilter; | 112 class DevToolsAgentFilter; |
| 113 class DomStorageDispatcher; | 113 class DomStorageDispatcher; |
| 114 class EmbeddedWorkerDispatcher; | 114 class EmbeddedWorkerDispatcher; |
| 115 class FrameSwapMessageQueue; | 115 class FrameSwapMessageQueue; |
| 116 class IndexedDBDispatcher; | 116 class IndexedDBDispatcher; |
| 117 class InputHandlerManager; | 117 class InputHandlerManager; |
| 118 class MediaStreamCenter; | 118 class MediaStreamCenter; |
| 119 class MemoryObserver; | 119 class MemoryObserver; |
| 120 class MidiMessageFilter; | 120 class MidiMessageFilter; |
| 121 class NetInfoDispatcher; | |
| 122 class P2PSocketDispatcher; | 121 class P2PSocketDispatcher; |
| 123 class PeerConnectionDependencyFactory; | 122 class PeerConnectionDependencyFactory; |
| 124 class PeerConnectionTracker; | 123 class PeerConnectionTracker; |
| 125 class CategorizedWorkerPool; | 124 class CategorizedWorkerPool; |
| 126 class RenderThreadObserver; | 125 class RenderThreadObserver; |
| 127 class RendererBlinkPlatformImpl; | 126 class RendererBlinkPlatformImpl; |
| 128 class RendererGpuVideoAcceleratorFactories; | 127 class RendererGpuVideoAcceleratorFactories; |
| 129 class ResourceDispatchThrottler; | 128 class ResourceDispatchThrottler; |
| 130 class VideoCaptureImplManager; | 129 class VideoCaptureImplManager; |
| 131 | 130 |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 745 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 747 }; | 746 }; |
| 748 | 747 |
| 749 #if defined(COMPILER_MSVC) | 748 #if defined(COMPILER_MSVC) |
| 750 #pragma warning(pop) | 749 #pragma warning(pop) |
| 751 #endif | 750 #endif |
| 752 | 751 |
| 753 } // namespace content | 752 } // namespace content |
| 754 | 753 |
| 755 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 754 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |