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:
@@ -9,7 +9,7 @@
|
||||
// implementations. See the translator.README.txt file in the tools directory
|
||||
// for more information.
|
||||
//
|
||||
// $hash=b87b59400a1b0693d9f4ac37546c7d0ce5190ff7$
|
||||
// $hash=0d464b5cc5cafab59224cc9904cbbbddce9bcd3e$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_BROWSER_CTOCPP_H_
|
||||
@@ -36,27 +36,27 @@ class CefBrowserCToCpp
|
||||
virtual ~CefBrowserCToCpp();
|
||||
|
||||
// CefBrowser methods.
|
||||
bool IsValid() OVERRIDE;
|
||||
CefRefPtr<CefBrowserHost> GetHost() OVERRIDE;
|
||||
bool CanGoBack() OVERRIDE;
|
||||
void GoBack() OVERRIDE;
|
||||
bool CanGoForward() OVERRIDE;
|
||||
void GoForward() OVERRIDE;
|
||||
bool IsLoading() OVERRIDE;
|
||||
void Reload() OVERRIDE;
|
||||
void ReloadIgnoreCache() OVERRIDE;
|
||||
void StopLoad() OVERRIDE;
|
||||
int GetIdentifier() OVERRIDE;
|
||||
bool IsSame(CefRefPtr<CefBrowser> that) OVERRIDE;
|
||||
bool IsPopup() OVERRIDE;
|
||||
bool HasDocument() OVERRIDE;
|
||||
CefRefPtr<CefFrame> GetMainFrame() OVERRIDE;
|
||||
CefRefPtr<CefFrame> GetFocusedFrame() OVERRIDE;
|
||||
CefRefPtr<CefFrame> GetFrame(int64 identifier) OVERRIDE;
|
||||
CefRefPtr<CefFrame> GetFrame(const CefString& name) OVERRIDE;
|
||||
size_t GetFrameCount() OVERRIDE;
|
||||
void GetFrameIdentifiers(std::vector<int64>& identifiers) OVERRIDE;
|
||||
void GetFrameNames(std::vector<CefString>& names) OVERRIDE;
|
||||
bool IsValid() override;
|
||||
CefRefPtr<CefBrowserHost> GetHost() override;
|
||||
bool CanGoBack() override;
|
||||
void GoBack() override;
|
||||
bool CanGoForward() override;
|
||||
void GoForward() override;
|
||||
bool IsLoading() override;
|
||||
void Reload() override;
|
||||
void ReloadIgnoreCache() override;
|
||||
void StopLoad() override;
|
||||
int GetIdentifier() override;
|
||||
bool IsSame(CefRefPtr<CefBrowser> that) override;
|
||||
bool IsPopup() override;
|
||||
bool HasDocument() override;
|
||||
CefRefPtr<CefFrame> GetMainFrame() override;
|
||||
CefRefPtr<CefFrame> GetFocusedFrame() override;
|
||||
CefRefPtr<CefFrame> GetFrame(int64 identifier) override;
|
||||
CefRefPtr<CefFrame> GetFrame(const CefString& name) override;
|
||||
size_t GetFrameCount() override;
|
||||
void GetFrameIdentifiers(std::vector<int64>& identifiers) override;
|
||||
void GetFrameNames(std::vector<CefString>& names) override;
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CTOCPP_BROWSER_CTOCPP_H_
|
||||
|
Reference in New Issue
Block a user