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/shared_memory.h" | 9 #include "base/shared_memory.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
11 #include "ipc/ipc_channel_proxy.h" | 11 #include "ipc/ipc_channel_proxy.h" |
12 #include "ipc/ipc_sender.h" | 12 #include "ipc/ipc_sender.h" |
13 | 13 |
14 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
15 #include <windows.h> | 15 #include <windows.h> |
16 #endif | 16 #endif |
17 | 17 |
18 class MessageLoop; | 18 class MessageLoop; |
19 | 19 |
| 20 namespace base { |
| 21 class MessageLoopProxy; |
| 22 } |
| 23 |
20 namespace IPC { | 24 namespace IPC { |
21 class SyncChannel; | 25 class SyncChannel; |
22 class SyncMessageFilter; | 26 class SyncMessageFilter; |
23 } | 27 } |
24 | 28 |
25 namespace v8 { | 29 namespace v8 { |
26 class Extension; | 30 class Extension; |
27 } | 31 } |
28 | 32 |
29 namespace content { | 33 namespace content { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 virtual void PreCacheFont(const LOGFONT& log_font) = 0; | 110 virtual void PreCacheFont(const LOGFONT& log_font) = 0; |
107 | 111 |
108 // Release cached font. | 112 // Release cached font. |
109 virtual void ReleaseCachedFonts() = 0; | 113 virtual void ReleaseCachedFonts() = 0; |
110 #endif | 114 #endif |
111 }; | 115 }; |
112 | 116 |
113 } // namespace content | 117 } // namespace content |
114 | 118 |
115 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ | 119 #endif // CONTENT_PUBLIC_RENDERER_RENDER_THREAD_H_ |
OLD | NEW |