| 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..78e3a7d49339f0c6c1df1fa2db72b9de90e226a5 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;
|
| + bool Duplicate(int* result, int fd) override;
|
| + bool Move(int src, int dest) override;
|
| + void Close(int fd) override;
|
| };
|
|
|
| // A single arc of the directed graph which describes an injective multimapping.
|
|
|