| 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 <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 struct FrameMsg_NewFrame_Params; | 38 struct FrameMsg_NewFrame_Params; |
| 39 struct ViewMsg_New_Params; | 39 struct ViewMsg_New_Params; |
| 40 struct ViewMsg_UpdateScrollbarTheme_Params; | 40 struct ViewMsg_UpdateScrollbarTheme_Params; |
| 41 struct WorkerProcessMsg_CreateWorker_Params; | 41 struct WorkerProcessMsg_CreateWorker_Params; |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 class WebGamepads; | 44 class WebGamepads; |
| 45 class WebGraphicsContext3D; | 45 class WebGraphicsContext3D; |
| 46 class WebMediaStreamCenter; | 46 class WebMediaStreamCenter; |
| 47 class WebMediaStreamCenterClient; | 47 class WebMediaStreamCenterClient; |
| 48 class WebThread; |
| 48 } | 49 } |
| 49 | 50 |
| 50 namespace base { | 51 namespace base { |
| 51 class SingleThreadTaskRunner; | 52 class SingleThreadTaskRunner; |
| 52 class Thread; | 53 class Thread; |
| 53 } | 54 } |
| 54 | 55 |
| 55 namespace cc { | 56 namespace cc { |
| 56 class ContextProvider; | 57 class ContextProvider; |
| 57 class TaskGraphRunner; | 58 class TaskGraphRunner; |
| (...skipping 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); | 695 DISALLOW_COPY_AND_ASSIGN(RenderThreadImpl); |
| 695 }; | 696 }; |
| 696 | 697 |
| 697 #if defined(COMPILER_MSVC) | 698 #if defined(COMPILER_MSVC) |
| 698 #pragma warning(pop) | 699 #pragma warning(pop) |
| 699 #endif | 700 #endif |
| 700 | 701 |
| 701 } // namespace content | 702 } // namespace content |
| 702 | 703 |
| 703 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ | 704 #endif // CONTENT_RENDERER_RENDER_THREAD_IMPL_H_ |
| OLD | NEW |