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=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_
|
||||
|
Reference in New Issue
Block a user