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