| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 CompositorFrameSink; | 73 class CompositorFrameSink; |
| 74 class FrameSinkId; |
| 74 class TaskGraphRunner; | 75 class TaskGraphRunner; |
| 75 } | 76 } |
| 76 | 77 |
| 77 namespace discardable_memory { | 78 namespace discardable_memory { |
| 78 class ClientDiscardableSharedMemoryManager; | 79 class ClientDiscardableSharedMemoryManager; |
| 79 } | 80 } |
| 80 | 81 |
| 81 namespace gpu { | 82 namespace gpu { |
| 82 class GpuChannelHost; | 83 class GpuChannelHost; |
| 83 } | 84 } |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 772 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 773 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 773 }; | 774 }; |
| 774 | 775 |
| 775 #if defined(COMPILER_MSVC) | 776 #if defined(COMPILER_MSVC) |
| 776 #pragma warning(pop) | 777 #pragma warning(pop) |
| 777 #endif | 778 #endif |
| 778 | 779 |
| 779 } // namespace content | 780 } // namespace content |
| 780 | 781 |
| 781 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 782 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |