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

Unified Diff: content/child/child_thread.cc

Issue 630743005: Replace OVERRIDE and FINAL with override and final in content/child/[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/child/child_thread.h ('k') | content/child/db_message_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_thread.cc
diff --git a/content/child/child_thread.cc b/content/child/child_thread.cc
index 9d6364a294afff99bfaaf071c080ae05a3d12d8b..e774929465f80b78ef733de54ec2b45cb6a666bd 100644
--- a/content/child/child_thread.cc
+++ b/content/child/child_thread.cc
@@ -83,9 +83,9 @@ class WaitAndExitDelegate : public base::PlatformThread::Delegate {
public:
explicit WaitAndExitDelegate(base::TimeDelta duration)
: duration_(duration) {}
- virtual ~WaitAndExitDelegate() OVERRIDE {}
+ virtual ~WaitAndExitDelegate() override {}
- virtual void ThreadMain() OVERRIDE {
+ virtual void ThreadMain() override {
base::PlatformThread::Sleep(duration_);
_exit(0);
}
@@ -116,7 +116,7 @@ bool CreateWaitAndExitThread(base::TimeDelta duration) {
class SuicideOnChannelErrorFilter : public IPC::MessageFilter {
public:
// IPC::MessageFilter
- virtual void OnChannelError() OVERRIDE {
+ virtual void OnChannelError() override {
// For renderer/worker processes:
// On POSIX, at least, one can install an unload handler which loops
// forever and leave behind a renderer process which eats 100% CPU forever.
« no previous file with comments | « content/child/child_thread.h ('k') | content/child/db_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698