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=46e412e9d4ce0d6af2b3c065e731b73e93d885d4$
|
||||
// $hash=cb3c98856aa7c877304947c5c41818ac8bc6cec4$
|
||||
//
|
||||
|
||||
#ifndef CEF_LIBCEF_DLL_CTOCPP_MENU_MODEL_CTOCPP_H_
|
||||
@@ -34,96 +34,96 @@ class CefMenuModelCToCpp : public CefCToCppRefCounted<CefMenuModelCToCpp,
|
||||
virtual ~CefMenuModelCToCpp();
|
||||
|
||||
// CefMenuModel methods.
|
||||
bool IsSubMenu() OVERRIDE;
|
||||
bool Clear() OVERRIDE;
|
||||
int GetCount() OVERRIDE;
|
||||
bool AddSeparator() OVERRIDE;
|
||||
bool AddItem(int command_id, const CefString& label) OVERRIDE;
|
||||
bool AddCheckItem(int command_id, const CefString& label) OVERRIDE;
|
||||
bool IsSubMenu() override;
|
||||
bool Clear() override;
|
||||
int GetCount() override;
|
||||
bool AddSeparator() override;
|
||||
bool AddItem(int command_id, const CefString& label) override;
|
||||
bool AddCheckItem(int command_id, const CefString& label) override;
|
||||
bool AddRadioItem(int command_id,
|
||||
const CefString& label,
|
||||
int group_id) OVERRIDE;
|
||||
int group_id) override;
|
||||
CefRefPtr<CefMenuModel> AddSubMenu(int command_id,
|
||||
const CefString& label) OVERRIDE;
|
||||
bool InsertSeparatorAt(int index) OVERRIDE;
|
||||
bool InsertItemAt(int index, int command_id, const CefString& label) OVERRIDE;
|
||||
const CefString& label) override;
|
||||
bool InsertSeparatorAt(int index) override;
|
||||
bool InsertItemAt(int index, int command_id, const CefString& label) override;
|
||||
bool InsertCheckItemAt(int index,
|
||||
int command_id,
|
||||
const CefString& label) OVERRIDE;
|
||||
const CefString& label) override;
|
||||
bool InsertRadioItemAt(int index,
|
||||
int command_id,
|
||||
const CefString& label,
|
||||
int group_id) OVERRIDE;
|
||||
int group_id) override;
|
||||
CefRefPtr<CefMenuModel> InsertSubMenuAt(int index,
|
||||
int command_id,
|
||||
const CefString& label) OVERRIDE;
|
||||
bool Remove(int command_id) OVERRIDE;
|
||||
bool RemoveAt(int index) OVERRIDE;
|
||||
int GetIndexOf(int command_id) OVERRIDE;
|
||||
int GetCommandIdAt(int index) OVERRIDE;
|
||||
bool SetCommandIdAt(int index, int command_id) OVERRIDE;
|
||||
CefString GetLabel(int command_id) OVERRIDE;
|
||||
CefString GetLabelAt(int index) OVERRIDE;
|
||||
bool SetLabel(int command_id, const CefString& label) OVERRIDE;
|
||||
bool SetLabelAt(int index, const CefString& label) OVERRIDE;
|
||||
MenuItemType GetType(int command_id) OVERRIDE;
|
||||
MenuItemType GetTypeAt(int index) OVERRIDE;
|
||||
int GetGroupId(int command_id) OVERRIDE;
|
||||
int GetGroupIdAt(int index) OVERRIDE;
|
||||
bool SetGroupId(int command_id, int group_id) OVERRIDE;
|
||||
bool SetGroupIdAt(int index, int group_id) OVERRIDE;
|
||||
CefRefPtr<CefMenuModel> GetSubMenu(int command_id) OVERRIDE;
|
||||
CefRefPtr<CefMenuModel> GetSubMenuAt(int index) OVERRIDE;
|
||||
bool IsVisible(int command_id) OVERRIDE;
|
||||
bool IsVisibleAt(int index) OVERRIDE;
|
||||
bool SetVisible(int command_id, bool visible) OVERRIDE;
|
||||
bool SetVisibleAt(int index, bool visible) OVERRIDE;
|
||||
bool IsEnabled(int command_id) OVERRIDE;
|
||||
bool IsEnabledAt(int index) OVERRIDE;
|
||||
bool SetEnabled(int command_id, bool enabled) OVERRIDE;
|
||||
bool SetEnabledAt(int index, bool enabled) OVERRIDE;
|
||||
bool IsChecked(int command_id) OVERRIDE;
|
||||
bool IsCheckedAt(int index) OVERRIDE;
|
||||
bool SetChecked(int command_id, bool checked) OVERRIDE;
|
||||
bool SetCheckedAt(int index, bool checked) OVERRIDE;
|
||||
bool HasAccelerator(int command_id) OVERRIDE;
|
||||
bool HasAcceleratorAt(int index) OVERRIDE;
|
||||
const CefString& label) override;
|
||||
bool Remove(int command_id) override;
|
||||
bool RemoveAt(int index) override;
|
||||
int GetIndexOf(int command_id) override;
|
||||
int GetCommandIdAt(int index) override;
|
||||
bool SetCommandIdAt(int index, int command_id) override;
|
||||
CefString GetLabel(int command_id) override;
|
||||
CefString GetLabelAt(int index) override;
|
||||
bool SetLabel(int command_id, const CefString& label) override;
|
||||
bool SetLabelAt(int index, const CefString& label) override;
|
||||
MenuItemType GetType(int command_id) override;
|
||||
MenuItemType GetTypeAt(int index) override;
|
||||
int GetGroupId(int command_id) override;
|
||||
int GetGroupIdAt(int index) override;
|
||||
bool SetGroupId(int command_id, int group_id) override;
|
||||
bool SetGroupIdAt(int index, int group_id) override;
|
||||
CefRefPtr<CefMenuModel> GetSubMenu(int command_id) override;
|
||||
CefRefPtr<CefMenuModel> GetSubMenuAt(int index) override;
|
||||
bool IsVisible(int command_id) override;
|
||||
bool IsVisibleAt(int index) override;
|
||||
bool SetVisible(int command_id, bool visible) override;
|
||||
bool SetVisibleAt(int index, bool visible) override;
|
||||
bool IsEnabled(int command_id) override;
|
||||
bool IsEnabledAt(int index) override;
|
||||
bool SetEnabled(int command_id, bool enabled) override;
|
||||
bool SetEnabledAt(int index, bool enabled) override;
|
||||
bool IsChecked(int command_id) override;
|
||||
bool IsCheckedAt(int index) override;
|
||||
bool SetChecked(int command_id, bool checked) override;
|
||||
bool SetCheckedAt(int index, bool checked) override;
|
||||
bool HasAccelerator(int command_id) override;
|
||||
bool HasAcceleratorAt(int index) override;
|
||||
bool SetAccelerator(int command_id,
|
||||
int key_code,
|
||||
bool shift_pressed,
|
||||
bool ctrl_pressed,
|
||||
bool alt_pressed) OVERRIDE;
|
||||
bool alt_pressed) override;
|
||||
bool SetAcceleratorAt(int index,
|
||||
int key_code,
|
||||
bool shift_pressed,
|
||||
bool ctrl_pressed,
|
||||
bool alt_pressed) OVERRIDE;
|
||||
bool RemoveAccelerator(int command_id) OVERRIDE;
|
||||
bool RemoveAcceleratorAt(int index) OVERRIDE;
|
||||
bool alt_pressed) override;
|
||||
bool RemoveAccelerator(int command_id) override;
|
||||
bool RemoveAcceleratorAt(int index) override;
|
||||
bool GetAccelerator(int command_id,
|
||||
int& key_code,
|
||||
bool& shift_pressed,
|
||||
bool& ctrl_pressed,
|
||||
bool& alt_pressed) OVERRIDE;
|
||||
bool& alt_pressed) override;
|
||||
bool GetAcceleratorAt(int index,
|
||||
int& key_code,
|
||||
bool& shift_pressed,
|
||||
bool& ctrl_pressed,
|
||||
bool& alt_pressed) OVERRIDE;
|
||||
bool& alt_pressed) override;
|
||||
bool SetColor(int command_id,
|
||||
cef_menu_color_type_t color_type,
|
||||
cef_color_t color) OVERRIDE;
|
||||
cef_color_t color) override;
|
||||
bool SetColorAt(int index,
|
||||
cef_menu_color_type_t color_type,
|
||||
cef_color_t color) OVERRIDE;
|
||||
cef_color_t color) override;
|
||||
bool GetColor(int command_id,
|
||||
cef_menu_color_type_t color_type,
|
||||
cef_color_t& color) OVERRIDE;
|
||||
cef_color_t& color) override;
|
||||
bool GetColorAt(int index,
|
||||
cef_menu_color_type_t color_type,
|
||||
cef_color_t& color) OVERRIDE;
|
||||
bool SetFontList(int command_id, const CefString& font_list) OVERRIDE;
|
||||
bool SetFontListAt(int index, const CefString& font_list) OVERRIDE;
|
||||
cef_color_t& color) override;
|
||||
bool SetFontList(int command_id, const CefString& font_list) override;
|
||||
bool SetFontListAt(int index, const CefString& font_list) override;
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_DLL_CTOCPP_MENU_MODEL_CTOCPP_H_
|
||||
|
Reference in New Issue
Block a user