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

Unified Diff: content/utility/utility_thread_impl.h

Issue 671663002: Standardize usage of virtual/override/final in content/ (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 2cdb2846e25a726ab10a430766e928727d6d7460..5b186fc21cf0a05e8d1bd3c03f6b4e1b784682f1 100644
--- a/content/utility/utility_thread_impl.h
+++ b/content/utility/utility_thread_impl.h
@@ -28,11 +28,11 @@ class UtilityThreadImpl : public UtilityThread,
UtilityThreadImpl();
// Constructor that's used when running in single process mode.
explicit UtilityThreadImpl(const std::string& channel_name);
- virtual ~UtilityThreadImpl();
- virtual void Shutdown() override;
+ ~UtilityThreadImpl() override;
+ void Shutdown() override;
- virtual bool Send(IPC::Message* msg) override;
- virtual void ReleaseProcessIfNeeded() override;
+ bool Send(IPC::Message* msg) override;
+ void ReleaseProcessIfNeeded() override;
#if defined(OS_WIN)
virtual void PreCacheFont(const LOGFONT& log_font) override;
virtual void ReleaseCachedFonts() override;
@@ -42,7 +42,7 @@ class UtilityThreadImpl : public UtilityThread,
void Init();
// ChildThread implementation.
- virtual bool OnControlMessageReceived(const IPC::Message& msg) override;
+ 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