| Index: content/common/font_cache_dispatcher_win.h
|
| diff --git a/content/common/font_cache_dispatcher_win.h b/content/common/font_cache_dispatcher_win.h
|
| index 2ae8132da6f56553140a669e738e749154a0b901..e94161ce656847797b65942ed1512bf7477aec80 100644
|
| --- a/content/common/font_cache_dispatcher_win.h
|
| +++ b/content/common/font_cache_dispatcher_win.h
|
| @@ -9,15 +9,14 @@
|
|
|
| #include "base/basictypes.h"
|
| #include "base/memory/singleton.h"
|
| -#include "ipc/ipc_channel_proxy.h"
|
| +#include "ipc/ipc_message_filter.h"
|
|
|
| namespace content {
|
|
|
| // Dispatches messages used for font caching on Windows. This is needed because
|
| // Windows can't load fonts into its kernel cache in sandboxed processes. So the
|
| // sandboxed process asks the browser process to do this for it.
|
| -class FontCacheDispatcher : public IPC::ChannelProxy::MessageFilter,
|
| - public IPC::Sender {
|
| +class FontCacheDispatcher : public IPC::MessageFilter, public IPC::Sender {
|
| public:
|
| FontCacheDispatcher();
|
| virtual ~FontCacheDispatcher();
|
| @@ -26,7 +25,7 @@ class FontCacheDispatcher : public IPC::ChannelProxy::MessageFilter,
|
| virtual bool Send(IPC::Message* message) OVERRIDE;
|
|
|
| private:
|
| - // IPC::ChannelProxy::MessageFilter implementation:
|
| + // IPC::MessageFilter implementation:
|
| virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| virtual void OnChannelClosing() OVERRIDE;
|
|
|