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,16 +57,15 @@ class CefFileDialogCallback : public virtual CefBaseRefCounted {
/*--cef(capi_name=cont,index_param=selected_accept_filter,
optional_param=file_paths)--*/
virtual void Continue(int selected_accept_filter,
const std::vector<CefString>& file_paths) =0;
const std::vector<CefString>& file_paths) = 0;
///
// Cancel the file selection.
///
/*--cef()--*/
virtual void Cancel() =0;
virtual void Cancel() = 0;
};
///
// Implement this interface to handle dialog events. The methods of this class
// will be called on the browser process UI thread.