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:
@@ -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();
|
||||
|
Reference in New Issue
Block a user