Index: base/posix/file_descriptor_shuffle.h |
diff --git a/base/posix/file_descriptor_shuffle.h b/base/posix/file_descriptor_shuffle.h |
index 5fa590bf47b873c30057926ed461dcc281e20dd0..875fdf5f34cf3fe22eb04e5661883e894b4baf8f 100644 |
--- a/base/posix/file_descriptor_shuffle.h |
+++ b/base/posix/file_descriptor_shuffle.h |
@@ -48,9 +48,9 @@ class InjectionDelegate { |
// An implementation of the InjectionDelegate interface using the file |
// descriptor table of the current process as the domain. |
class BASE_EXPORT FileDescriptorTableInjection : public InjectionDelegate { |
- virtual bool Duplicate(int* result, int fd) OVERRIDE; |
- virtual bool Move(int src, int dest) OVERRIDE; |
- virtual void Close(int fd) OVERRIDE; |
+ virtual bool Duplicate(int* result, int fd) override; |
+ virtual bool Move(int src, int dest) override; |
+ virtual void Close(int fd) override; |
}; |
// A single arc of the directed graph which describes an injective multimapping. |