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

Unified Diff: chrome/common/multi_process_lock_mac.cc

Issue 622373003: Replacing the OVERRIDE with override in chrome/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolved Error 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 | « chrome/common/multi_process_lock_linux.cc ('k') | chrome/common/service_process_util_posix.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/multi_process_lock_mac.cc
diff --git a/chrome/common/multi_process_lock_mac.cc b/chrome/common/multi_process_lock_mac.cc
index 176ae4cc2a965c7daae37d33e896a5e4b1d18df3..2d5ab8b3128a6fdc4df11f18ce22be6d1087e911 100644
--- a/chrome/common/multi_process_lock_mac.cc
+++ b/chrome/common/multi_process_lock_mac.cc
@@ -20,7 +20,7 @@ class MultiProcessLockMac : public MultiProcessLock {
}
}
- virtual bool TryLock() OVERRIDE {
+ virtual bool TryLock() override {
if (port_ != NULL) {
DLOG(ERROR) << "MultiProcessLock is already locked - " << name_;
return true;
@@ -38,7 +38,7 @@ class MultiProcessLockMac : public MultiProcessLock {
return port_ != NULL;
}
- virtual void Unlock() OVERRIDE {
+ virtual void Unlock() override {
if (port_ == NULL) {
DLOG(ERROR) << "Over-unlocked MultiProcessLock - " << name_;
return;
« no previous file with comments | « chrome/common/multi_process_lock_linux.cc ('k') | chrome/common/service_process_util_posix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698