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

Unified Diff: content/utility/in_process_utility_thread.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/test/webrtc_content_browsertest_base.h ('k') | content/utility/utility_thread_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/utility/in_process_utility_thread.h
diff --git a/content/utility/in_process_utility_thread.h b/content/utility/in_process_utility_thread.h
index 606c6d299f8c197e93ce8f5545b1ae231556ad82..00c71a1dd282183fcf5679a4ac60f7355794d6c5 100644
--- a/content/utility/in_process_utility_thread.h
+++ b/content/utility/in_process_utility_thread.h
@@ -17,12 +17,12 @@ class ChildProcess;
class InProcessUtilityThread : public base::Thread {
public:
InProcessUtilityThread(const std::string& channel_id);
- virtual ~InProcessUtilityThread();
+ ~InProcessUtilityThread() override;
private:
// base::Thread implementation:
- virtual void Init() override;
- virtual void CleanUp() override;
+ void Init() override;
+ void CleanUp() override;
void InitInternal();
« no previous file with comments | « content/test/webrtc_content_browsertest_base.h ('k') | content/utility/utility_thread_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698