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

@@ -19,26 +19,26 @@ class OsrRenderHandlerWinGL : public OsrRenderHandlerWin {
// Must be called immediately after object creation.
void Initialize(CefRefPtr<CefBrowser> browser);
void SetSpin(float spinX, float spinY) OVERRIDE;
void IncrementSpin(float spinDX, float spinDY) OVERRIDE;
bool IsOverPopupWidget(int x, int y) const OVERRIDE;
int GetPopupXOffset() const OVERRIDE;
int GetPopupYOffset() const OVERRIDE;
void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) OVERRIDE;
void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect) OVERRIDE;
void SetSpin(float spinX, float spinY) override;
void IncrementSpin(float spinDX, float spinDY) override;
bool IsOverPopupWidget(int x, int y) const override;
int GetPopupXOffset() const override;
int GetPopupYOffset() const override;
void OnPopupShow(CefRefPtr<CefBrowser> browser, bool show) override;
void OnPopupSize(CefRefPtr<CefBrowser> browser, const CefRect& rect) override;
void OnPaint(CefRefPtr<CefBrowser> browser,
CefRenderHandler::PaintElementType type,
const CefRenderHandler::RectList& dirtyRects,
const void* buffer,
int width,
int height) OVERRIDE;
int height) override;
void OnAcceleratedPaint(CefRefPtr<CefBrowser> browser,
CefRenderHandler::PaintElementType type,
const CefRenderHandler::RectList& dirtyRects,
void* share_handle) OVERRIDE;
void* share_handle) override;
private:
void Render() OVERRIDE;
void Render() override;
void EnableGL();
void DisableGL();