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=033d22b4a0516a84c2b319ee46a033af7a8009b2$
|
||||
// $hash=b6eff8c6efe30c1d3e310342c710bae76f018cb6$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_V8CONTEXT_CTOCPP_H_
|
||||
@@ -34,19 +34,19 @@ class CefV8ContextCToCpp : public CefCToCppRefCounted<CefV8ContextCToCpp,
|
||||
virtual ~CefV8ContextCToCpp();
|
||||
|
||||
// CefV8Context methods.
|
||||
CefRefPtr<CefTaskRunner> GetTaskRunner() OVERRIDE;
|
||||
bool IsValid() OVERRIDE;
|
||||
CefRefPtr<CefBrowser> GetBrowser() OVERRIDE;
|
||||
CefRefPtr<CefFrame> GetFrame() OVERRIDE;
|
||||
CefRefPtr<CefV8Value> GetGlobal() OVERRIDE;
|
||||
bool Enter() OVERRIDE;
|
||||
bool Exit() OVERRIDE;
|
||||
bool IsSame(CefRefPtr<CefV8Context> that) OVERRIDE;
|
||||
CefRefPtr<CefTaskRunner> GetTaskRunner() override;
|
||||
bool IsValid() override;
|
||||
CefRefPtr<CefBrowser> GetBrowser() override;
|
||||
CefRefPtr<CefFrame> GetFrame() override;
|
||||
CefRefPtr<CefV8Value> GetGlobal() override;
|
||||
bool Enter() override;
|
||||
bool Exit() override;
|
||||
bool IsSame(CefRefPtr<CefV8Context> that) override;
|
||||
bool Eval(const CefString& code,
|
||||
const CefString& script_url,
|
||||
int start_line,
|
||||
CefRefPtr<CefV8Value>& retval,
|
||||
CefRefPtr<CefV8Exception>& exception) OVERRIDE;
|
||||
CefRefPtr<CefV8Exception>& exception) override;
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CTOCPP_V8CONTEXT_CTOCPP_H_
|
||||
|
Reference in New Issue
Block a user