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

@@ -9,7 +9,7 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=5ade4141053ca1aa2f8c97eb4b93ab02af2aaf33$
// $hash=5aadd498c1b3c4274e6ba7e8343308fa02fb1f23$
//
#ifndef CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_
@@ -33,28 +33,28 @@ class CefValueCToCpp
virtual ~CefValueCToCpp();
// CefValue methods.
bool IsValid() OVERRIDE;
bool IsOwned() OVERRIDE;
bool IsReadOnly() OVERRIDE;
bool IsSame(CefRefPtr<CefValue> that) OVERRIDE;
bool IsEqual(CefRefPtr<CefValue> that) OVERRIDE;
CefRefPtr<CefValue> Copy() OVERRIDE;
CefValueType GetType() OVERRIDE;
bool GetBool() OVERRIDE;
int GetInt() OVERRIDE;
double GetDouble() OVERRIDE;
CefString GetString() OVERRIDE;
CefRefPtr<CefBinaryValue> GetBinary() OVERRIDE;
CefRefPtr<CefDictionaryValue> GetDictionary() OVERRIDE;
CefRefPtr<CefListValue> GetList() OVERRIDE;
bool SetNull() OVERRIDE;
bool SetBool(bool value) OVERRIDE;
bool SetInt(int value) OVERRIDE;
bool SetDouble(double value) OVERRIDE;
bool SetString(const CefString& value) OVERRIDE;
bool SetBinary(CefRefPtr<CefBinaryValue> value) OVERRIDE;
bool SetDictionary(CefRefPtr<CefDictionaryValue> value) OVERRIDE;
bool SetList(CefRefPtr<CefListValue> value) OVERRIDE;
bool IsValid() override;
bool IsOwned() override;
bool IsReadOnly() override;
bool IsSame(CefRefPtr<CefValue> that) override;
bool IsEqual(CefRefPtr<CefValue> that) override;
CefRefPtr<CefValue> Copy() override;
CefValueType GetType() override;
bool GetBool() override;
int GetInt() override;
double GetDouble() override;
CefString GetString() override;
CefRefPtr<CefBinaryValue> GetBinary() override;
CefRefPtr<CefDictionaryValue> GetDictionary() override;
CefRefPtr<CefListValue> GetList() override;
bool SetNull() override;
bool SetBool(bool value) override;
bool SetInt(int value) override;
bool SetDouble(double value) override;
bool SetString(const CefString& value) override;
bool SetBinary(CefRefPtr<CefBinaryValue> value) override;
bool SetDictionary(CefRefPtr<CefDictionaryValue> value) override;
bool SetList(CefRefPtr<CefListValue> value) override;
};
#endif // CEF_LIBCEF_DLL_CTOCPP_VALUE_CTOCPP_H_