| 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; | |
| 21 class WaitableEvent; | 20 class WaitableEvent; |
| 22 } | 21 } |
| 23 | 22 |
| 24 namespace cc { | 23 namespace cc { |
| 25 class SharedBitmapManager; | 24 class SharedBitmapManager; |
| 26 } | 25 } |
| 27 | 26 |
| 28 namespace IPC { | 27 namespace IPC { |
| 29 class MessageFilter; | 28 class MessageFilter; |
| 30 class SyncChannel; | 29 class SyncChannel; |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 // Gets the shutdown event for the process. | 131 // Gets the shutdown event for the process. |
| 133 virtual base::WaitableEvent* GetShutdownEvent() = 0; | 132 virtual base::WaitableEvent* GetShutdownEvent() = 0; |
| 134 | 133 |
| 135 // Returns the ServiceRegistry for this thread. | 134 // Returns the ServiceRegistry for this thread. |
| 136 virtual ServiceRegistry* GetServiceRegistry() = 0; | 135 virtual ServiceRegistry* GetServiceRegistry() = 0; |
| 137 }; | 136 }; |
| 138 | 137 |
| 139 } // namespace content | 138 } // namespace content |
| 140 | 139 |
| 141 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ | 140 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ |
| OLD | NEW |