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:
@@ -28,30 +28,30 @@ class BrowserWindowOsrWin : public BrowserWindow,
|
||||
const CefRect& rect,
|
||||
const CefBrowserSettings& settings,
|
||||
CefRefPtr<CefDictionaryValue> extra_info,
|
||||
CefRefPtr<CefRequestContext> request_context) OVERRIDE;
|
||||
CefRefPtr<CefRequestContext> request_context) override;
|
||||
void GetPopupConfig(CefWindowHandle temp_handle,
|
||||
CefWindowInfo& windowInfo,
|
||||
CefRefPtr<CefClient>& client,
|
||||
CefBrowserSettings& settings) OVERRIDE;
|
||||
CefBrowserSettings& settings) override;
|
||||
void ShowPopup(ClientWindowHandle parent_handle,
|
||||
int x,
|
||||
int y,
|
||||
size_t width,
|
||||
size_t height) OVERRIDE;
|
||||
void Show() OVERRIDE;
|
||||
void Hide() OVERRIDE;
|
||||
void SetBounds(int x, int y, size_t width, size_t height) OVERRIDE;
|
||||
void SetFocus(bool focus) OVERRIDE;
|
||||
void SetDeviceScaleFactor(float device_scale_factor) OVERRIDE;
|
||||
float GetDeviceScaleFactor() const OVERRIDE;
|
||||
ClientWindowHandle GetWindowHandle() const OVERRIDE;
|
||||
size_t height) override;
|
||||
void Show() override;
|
||||
void Hide() override;
|
||||
void SetBounds(int x, int y, size_t width, size_t height) override;
|
||||
void SetFocus(bool focus) override;
|
||||
void SetDeviceScaleFactor(float device_scale_factor) override;
|
||||
float GetDeviceScaleFactor() const override;
|
||||
ClientWindowHandle GetWindowHandle() const override;
|
||||
|
||||
private:
|
||||
// ClienHandler::Delegate methods.
|
||||
void OnBrowserClosed(CefRefPtr<CefBrowser> browser) OVERRIDE;
|
||||
void OnBrowserClosed(CefRefPtr<CefBrowser> browser) override;
|
||||
|
||||
// OsrWindowWin::Delegate methods.
|
||||
void OnOsrNativeWindowCreated(HWND hwnd) OVERRIDE;
|
||||
void OnOsrNativeWindowCreated(HWND hwnd) override;
|
||||
|
||||
// The below members are only accessed on the main thread.
|
||||
scoped_refptr<OsrWindowWin> osr_window_;
|
||||
|
Reference in New Issue
Block a user