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

@@ -17,13 +17,13 @@ class MainMessageLoopStd : public MainMessageLoop {
MainMessageLoopStd();
// MainMessageLoop methods.
int Run() OVERRIDE;
void Quit() OVERRIDE;
void PostTask(CefRefPtr<CefTask> task) OVERRIDE;
bool RunsTasksOnCurrentThread() const OVERRIDE;
int Run() override;
void Quit() override;
void PostTask(CefRefPtr<CefTask> task) override;
bool RunsTasksOnCurrentThread() const override;
#if defined(OS_WIN)
void SetCurrentModelessDialog(HWND hWndDialog) OVERRIDE;
void SetCurrentModelessDialog(HWND hWndDialog) override;
#endif
private: