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

@ -9,10 +9,11 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=208bb3fedcf86b782a03fd64c527abcf05f7b297$
//
#include "libcef_dll/cpptoc/task_cpptoc.h"
namespace {
// MEMBER FUNCTIONS - Body may be edited by hand.
@ -30,23 +31,28 @@ void CEF_CALLBACK task_execute(struct _cef_task_t* self) {
} // namespace
// CONSTRUCTOR - Do not edit by hand.
CefTaskCppToC::CefTaskCppToC() {
GetStruct()->execute = task_execute;
}
template<> CefRefPtr<CefTask> CefCppToCRefCounted<CefTaskCppToC, CefTask,
cef_task_t>::UnwrapDerived(CefWrapperType type, cef_task_t* s) {
template <>
CefRefPtr<CefTask>
CefCppToCRefCounted<CefTaskCppToC, CefTask, cef_task_t>::UnwrapDerived(
CefWrapperType type,
cef_task_t* s) {
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCppToCRefCounted<CefTaskCppToC, CefTask,
cef_task_t>::DebugObjCt = 0;
template <>
base::AtomicRefCount
CefCppToCRefCounted<CefTaskCppToC, CefTask, cef_task_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCppToCRefCounted<CefTaskCppToC, CefTask,
cef_task_t>::kWrapperType = WT_TASK;
template <>
CefWrapperType
CefCppToCRefCounted<CefTaskCppToC, CefTask, cef_task_t>::kWrapperType =
WT_TASK;