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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 struct FrameMsg_NewFrame_Params; | 42 struct FrameMsg_NewFrame_Params; |
43 struct ViewMsg_New_Params; | 43 struct ViewMsg_New_Params; |
44 struct ViewMsg_UpdateScrollbarTheme_Params; | 44 struct ViewMsg_UpdateScrollbarTheme_Params; |
45 struct WorkerProcessMsg_CreateWorker_Params; | 45 struct WorkerProcessMsg_CreateWorker_Params; |
46 | 46 |
47 namespace blink { | 47 namespace blink { |
48 class WebGamepads; | 48 class WebGamepads; |
49 class WebGraphicsContext3D; | 49 class WebGraphicsContext3D; |
50 class WebMediaStreamCenter; | 50 class WebMediaStreamCenter; |
51 class WebMediaStreamCenterClient; | 51 class WebMediaStreamCenterClient; |
| 52 class WebThread; |
52 } | 53 } |
53 | 54 |
54 namespace base { | 55 namespace base { |
55 class SingleThreadTaskRunner; | 56 class SingleThreadTaskRunner; |
56 class Thread; | 57 class Thread; |
57 } | 58 } |
58 | 59 |
59 namespace cc { | 60 namespace cc { |
60 class ContextProvider; | 61 class ContextProvider; |
61 class TaskGraphRunner; | 62 class TaskGraphRunner; |
(...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
698 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 699 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
699 }; | 700 }; |
700 | 701 |
701 #if defined(COMPILER_MSVC) | 702 #if defined(COMPILER_MSVC) |
702 #pragma warning(pop) | 703 #pragma warning(pop) |
703 #endif | 704 #endif |
704 | 705 |
705 } // namespace content | 706 } // namespace content |
706 | 707 |
707 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 708 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
OLD | NEW |