| 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 357aed6b4919d44a6cae5f4d249e758eec222bb3..3d3d370eae424d1fe50c95a95469df1cc727002c 100644
|
| --- a/content/common/font_cache_dispatcher_win.h
|
| +++ b/content/common/font_cache_dispatcher_win.h
|
| @@ -20,16 +20,16 @@ namespace content {
|
| class FontCacheDispatcher : public IPC::MessageFilter, public IPC::Sender {
|
| public:
|
| FontCacheDispatcher();
|
| - virtual ~FontCacheDispatcher();
|
| + ~FontCacheDispatcher() override;
|
|
|
| // IPC::Sender implementation:
|
| - virtual bool Send(IPC::Message* message) override;
|
| + bool Send(IPC::Message* message) override;
|
|
|
| private:
|
| // IPC::MessageFilter implementation:
|
| - virtual void OnFilterAdded(IPC::Sender* sender) override;
|
| - virtual bool OnMessageReceived(const IPC::Message& message) override;
|
| - virtual void OnChannelClosing() override;
|
| + void OnFilterAdded(IPC::Sender* sender) override;
|
| + bool OnMessageReceived(const IPC::Message& message) override;
|
| + void OnChannelClosing() override;
|
|
|
| // Message handlers.
|
| void OnPreCacheFont(const LOGFONT& font);
|
|
|