Replace OVERRIDE with override (see issue #3140)

This commit is contained in:
Marshall Greenblatt
2021-06-17 15:43:06 -04:00
parent 9c7367bd4e
commit 6d80ec69d7
149 changed files with 2076 additions and 2076 deletions

View File

@@ -57,11 +57,11 @@ class MainMessageLoopExternalPumpLinux : public MainMessageLoopExternalPump {
~MainMessageLoopExternalPumpLinux();
// MainMessageLoopStd methods:
void Quit() OVERRIDE;
int Run() OVERRIDE;
void Quit() override;
int Run() override;
// MainMessageLoopExternalPump methods:
void OnScheduleMessagePumpWork(int64 delay_ms) OVERRIDE;
void OnScheduleMessagePumpWork(int64 delay_ms) override;
// Internal methods used for processing the pump callbacks. They are public
// for simplicity but should not be used directly. HandlePrepare is called
@@ -75,9 +75,9 @@ class MainMessageLoopExternalPumpLinux : public MainMessageLoopExternalPump {
protected:
// MainMessageLoopExternalPump methods:
void SetTimer(int64 delay_ms) OVERRIDE;
void KillTimer() OVERRIDE;
bool IsTimerPending() OVERRIDE;
void SetTimer(int64 delay_ms) override;
void KillTimer() override;
bool IsTimerPending() override;
private:
// Used to flag that the Run() invocation should return ASAP.