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

Unified Diff: content/common/font_cache_dispatcher_win.h

Issue 1091093006: Update {virtual,override} to follow C++11 style in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Back out some webrtc files. Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/dwrite_font_platform_win.cc ('k') | content/common/sandbox_mac_system_access_unittest.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « content/common/dwrite_font_platform_win.cc ('k') | content/common/sandbox_mac_system_access_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698