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 <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include "base/callback.h" | 11 #include "base/callback.h" |
12 #include "base/memory/shared_memory.h" | 12 #include "base/memory/shared_memory.h" |
13 #include "base/metrics/user_metrics_action.h" | 13 #include "base/metrics/user_metrics_action.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "content/public/child/child_thread.h" | 15 #include "content/public/child/child_thread.h" |
16 #include "ipc/ipc_channel_proxy.h" | 16 #include "ipc/ipc_channel_proxy.h" |
17 | 17 |
18 class GURL; | 18 class GURL; |
19 | 19 |
20 namespace base { | 20 namespace base { |
21 class MessageLoop; | |
22 class WaitableEvent; | 21 class WaitableEvent; |
23 } | 22 } |
24 | 23 |
25 namespace cc { | 24 namespace cc { |
26 class SharedBitmapManager; | 25 class SharedBitmapManager; |
27 } | 26 } |
28 | 27 |
29 namespace IPC { | 28 namespace IPC { |
30 class MessageFilter; | 29 class MessageFilter; |
31 class SyncChannel; | 30 class SyncChannel; |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 // proxy servers. | 101 // proxy servers. |
103 virtual bool ResolveProxy(const GURL& url, std::string* proxy_list) = 0; | 102 virtual bool ResolveProxy(const GURL& url, std::string* proxy_list) = 0; |
104 | 103 |
105 // Gets the shutdown event for the process. | 104 // Gets the shutdown event for the process. |
106 virtual base::WaitableEvent* GetShutdownEvent() = 0; | 105 virtual base::WaitableEvent* GetShutdownEvent() = 0; |
107 }; | 106 }; |
108 | 107 |
109 } // namespace content | 108 } // namespace content |
110 | 109 |
111 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ | 110 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |