Index: base/synchronization/waitable_event_posix.cc |
diff --git a/base/synchronization/waitable_event_posix.cc b/base/synchronization/waitable_event_posix.cc |
index 89f42fff2f7d6f9a84d6be5d3923bdc169d5756f..f34b2a43505f422e476c05766aba1f74127f3912 100644 |
--- a/base/synchronization/waitable_event_posix.cc |
+++ b/base/synchronization/waitable_event_posix.cc |
@@ -91,7 +91,7 @@ class SyncWaiter : public WaitableEvent::Waiter { |
cv_(&lock_) { |
} |
- virtual bool Fire(WaitableEvent* signaling_event) OVERRIDE { |
+ virtual bool Fire(WaitableEvent* signaling_event) override { |
base::AutoLock locked(lock_); |
if (fired_) |
@@ -117,7 +117,7 @@ class SyncWaiter : public WaitableEvent::Waiter { |
// These waiters are always stack allocated and don't delete themselves. Thus |
// there's no problem and the ABA tag is the same as the object pointer. |
// --------------------------------------------------------------------------- |
- virtual bool Compare(void* tag) OVERRIDE { |
+ virtual bool Compare(void* tag) override { |
return this == tag; |
} |