Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(221)

Side by Side Diff: content/public/renderer/render_thread.h

Issue 10694014: Cleanup IPC::ChannelProxy to use SingleThreadTaskRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « content/common/indexed_db/indexed_db_message_filter.cc ('k') | content/renderer/gpu/input_event_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698