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_PUBLIC_RENDERER_RENDER_THREAD_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ |
6 #define CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ | 6 #define CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/memory/shared_memory.h" | 10 #include "base/memory/shared_memory.h" |
11 #include "base/metrics/user_metrics_action.h" | 11 #include "base/metrics/user_metrics_action.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "content/public/child/child_thread.h" | 13 #include "content/public/child/child_thread.h" |
14 #include "ipc/ipc_channel_proxy.h" | 14 #include "ipc/ipc_channel_proxy.h" |
15 | 15 |
16 class GURL; | 16 class GURL; |
17 | 17 |
18 namespace base { | 18 namespace base { |
19 class MessageLoop; | 19 class MessageLoop; |
| 20 class MessageLoopProxy; |
20 class WaitableEvent; | 21 class WaitableEvent; |
21 } | 22 } |
22 | 23 |
23 namespace cc { | 24 namespace cc { |
24 class SharedBitmapManager; | 25 class SharedBitmapManager; |
25 } | 26 } |
26 | 27 |
27 namespace IPC { | 28 namespace IPC { |
28 class MessageFilter; | 29 class MessageFilter; |
29 class SyncChannel; | 30 class SyncChannel; |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 // Gets the shutdown event for the process. | 132 // Gets the shutdown event for the process. |
132 virtual base::WaitableEvent* GetShutdownEvent() = 0; | 133 virtual base::WaitableEvent* GetShutdownEvent() = 0; |
133 | 134 |
134 // Returns the ServiceRegistry for this thread. | 135 // Returns the ServiceRegistry for this thread. |
135 virtual ServiceRegistry* GetServiceRegistry() = 0; | 136 virtual ServiceRegistry* GetServiceRegistry() = 0; |
136 }; | 137 }; |
137 | 138 |
138 } // namespace content | 139 } // namespace content |
139 | 140 |
140 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ | 141 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |