diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 18:48:41 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-01 18:48:41 +0000 |
commit | e35c9a8966206fcef0ce03923939563c571a0a28 (patch) | |
tree | 8b105f82d94adc6500214703a5ab28df9c4a8f61 /content/browser/ppapi_plugin_process_host.h | |
parent | a333fcafa7032a61fd5c8b193e0d13218a46f4d5 (diff) | |
download | chromium_src-e35c9a8966206fcef0ce03923939563c571a0a28.zip chromium_src-e35c9a8966206fcef0ce03923939563c571a0a28.tar.gz chromium_src-e35c9a8966206fcef0ce03923939563c571a0a28.tar.bz2 |
Dispatch the Windows font caching IPCs in one filter. This avoids having the code that calls those functions be duplicated and also makes the chrome service code not know about internal content IPCs. It also cleans up ChildProcessHost a bit, which will be useful when it gets an interface around it for the Content API.
BUG=98716
Review URL: http://codereview.chromium.org/8759013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112492 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/ppapi_plugin_process_host.h')
-rw-r--r-- | content/browser/ppapi_plugin_process_host.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h index 52227d7..a968a27 100644 --- a/content/browser/ppapi_plugin_process_host.h +++ b/content/browser/ppapi_plugin_process_host.h @@ -8,10 +8,6 @@ #include <queue> -#if defined(OS_WIN) -#include <windows.h> -#endif - #include "base/basictypes.h" #include "base/file_path.h" #include "base/memory/scoped_ptr.h" @@ -97,9 +93,6 @@ class PpapiPluginProcessHost // IPC message handlers. void OnRendererPluginChannelCreated(const IPC::ChannelHandle& handle); -#if defined(OS_WIN) - void OnPreCacheFont(const LOGFONT& font); -#endif // Handles most requests from the plugin. May be NULL. scoped_refptr<PepperMessageFilter> filter_; |