Apply clang-format to all C, C++ and ObjC files (issue #2171)

This commit is contained in:
Marshall Greenblatt
2017-05-17 11:29:28 +02:00
parent a566549e04
commit 31d9407ee2
1331 changed files with 33014 additions and 32258 deletions

View File

@ -57,7 +57,7 @@ class CefMenuModelDelegate : public virtual CefBaseRefCounted {
/*--cef()--*/
virtual void ExecuteCommand(CefRefPtr<CefMenuModel> menu_model,
int command_id,
cef_event_flags_t event_flags) =0;
cef_event_flags_t event_flags) = 0;
///
// Called when the user moves the mouse outside the menu and over the owning
@ -66,7 +66,7 @@ class CefMenuModelDelegate : public virtual CefBaseRefCounted {
/*--cef()--*/
virtual void MouseOutsideMenu(CefRefPtr<CefMenuModel> menu_model,
const CefPoint& screen_point) {}
///
// Called on unhandled open submenu keyboard commands. |is_rtl| will be true
// if the menu is displaying a right-to-left language.
@ -100,7 +100,9 @@ class CefMenuModelDelegate : public virtual CefBaseRefCounted {
///
/*--cef()--*/
virtual bool FormatLabel(CefRefPtr<CefMenuModel> menu_model,
CefString& label) { return false; }
CefString& label) {
return false;
}
};
#endif // CEF_INCLUDE_VIEWS_CEF_MENU_MODEL_DELEGATE_H_