mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Replace OVERRIDE with override (see issue #3140)
This commit is contained in:
@@ -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.
|
||||
|
Reference in New Issue
Block a user