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

Unified Diff: chrome/common/multi_process_lock_linux.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/mac/mock_launchd.h ('k') | chrome/common/multi_process_lock_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/multi_process_lock_linux.cc
diff --git a/chrome/common/multi_process_lock_linux.cc b/chrome/common/multi_process_lock_linux.cc
index 07d66353099485e56d221393f58945b6198ebca1..f00599f494d0c19861555bdb6d00b865ddd30424 100644
--- a/chrome/common/multi_process_lock_linux.cc
+++ b/chrome/common/multi_process_lock_linux.cc
@@ -24,7 +24,7 @@ class MultiProcessLockLinux : public MultiProcessLock {
}
}
- virtual bool TryLock() OVERRIDE {
+ virtual bool TryLock() override {
struct sockaddr_un address;
// +1 for terminator, +1 for 0 in position 0 that makes it an
@@ -85,7 +85,7 @@ class MultiProcessLockLinux : public MultiProcessLock {
}
}
- virtual void Unlock() OVERRIDE {
+ virtual void Unlock() override {
if (fd_ == -1) {
DLOG(ERROR) << "Over-unlocked MultiProcessLock - " << name_;
return;
« no previous file with comments | « chrome/common/mac/mock_launchd.h ('k') | chrome/common/multi_process_lock_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698