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

Unified Diff: content/utility/utility_thread_impl.h

Issue 633483002: Replace OVERRIDE and FINAL with override and final in content/utility/[a-s]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/utility/in_process_utility_thread.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/utility_thread_impl.h
diff --git a/content/utility/utility_thread_impl.h b/content/utility/utility_thread_impl.h
index 079555a83a79807aa20f92d097c2248afea7a7f7..2cdb2846e25a726ab10a430766e928727d6d7460 100644
--- a/content/utility/utility_thread_impl.h
+++ b/content/utility/utility_thread_impl.h
@@ -29,20 +29,20 @@ class UtilityThreadImpl : public UtilityThread,
// Constructor that's used when running in single process mode.
explicit UtilityThreadImpl(const std::string& channel_name);
virtual ~UtilityThreadImpl();
- virtual void Shutdown() OVERRIDE;
+ virtual void Shutdown() override;
- virtual bool Send(IPC::Message* msg) OVERRIDE;
- virtual void ReleaseProcessIfNeeded() OVERRIDE;
+ virtual bool Send(IPC::Message* msg) override;
+ virtual void ReleaseProcessIfNeeded() override;
#if defined(OS_WIN)
- virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE;
- virtual void ReleaseCachedFonts() OVERRIDE;
+ virtual void PreCacheFont(const LOGFONT& log_font) override;
+ virtual void ReleaseCachedFonts() override;
#endif
private:
void Init();
// ChildThread implementation.
- virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE;
+ virtual bool OnControlMessageReceived(const IPC::Message& msg) override;
// IPC message handlers.
void OnBatchModeStarted();
« no previous file with comments | « content/utility/in_process_utility_thread.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698