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,12 +9,13 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=a519fd1a0f098ffbcfc309721e5b388a5e3b81d9$
//
#include "libcef_dll/ctocpp/views/box_layout_ctocpp.h"
#include "libcef_dll/ctocpp/views/fill_layout_ctocpp.h"
#include "libcef_dll/ctocpp/views/layout_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.
CefRefPtr<CefBoxLayout> CefLayoutCToCpp::AsBoxLayout() {
@@ -56,33 +57,37 @@ bool CefLayoutCToCpp::IsValid() {
int _retval = _struct->is_valid(_struct);
// Return type: bool
return _retval?true:false;
return _retval ? true : false;
}
// CONSTRUCTOR - Do not edit by hand.
CefLayoutCToCpp::CefLayoutCToCpp() {
}
CefLayoutCToCpp::CefLayoutCToCpp() {}
template<> cef_layout_t* CefCToCppRefCounted<CefLayoutCToCpp, CefLayout,
cef_layout_t>::UnwrapDerived(CefWrapperType type, CefLayout* c) {
template <>
cef_layout_t*
CefCToCppRefCounted<CefLayoutCToCpp, CefLayout, cef_layout_t>::UnwrapDerived(
CefWrapperType type,
CefLayout* c) {
if (type == WT_BOX_LAYOUT) {
return reinterpret_cast<cef_layout_t*>(CefBoxLayoutCToCpp::Unwrap(
reinterpret_cast<CefBoxLayout*>(c)));
return reinterpret_cast<cef_layout_t*>(
CefBoxLayoutCToCpp::Unwrap(reinterpret_cast<CefBoxLayout*>(c)));
}
if (type == WT_FILL_LAYOUT) {
return reinterpret_cast<cef_layout_t*>(CefFillLayoutCToCpp::Unwrap(
reinterpret_cast<CefFillLayout*>(c)));
return reinterpret_cast<cef_layout_t*>(
CefFillLayoutCToCpp::Unwrap(reinterpret_cast<CefFillLayout*>(c)));
}
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCToCppRefCounted<CefLayoutCToCpp, CefLayout,
cef_layout_t>::DebugObjCt = 0;
template <>
base::AtomicRefCount
CefCToCppRefCounted<CefLayoutCToCpp, CefLayout, cef_layout_t>::DebugObjCt =
0;
#endif
template<> CefWrapperType CefCToCppRefCounted<CefLayoutCToCpp, CefLayout,
cef_layout_t>::kWrapperType = WT_LAYOUT;
template <>
CefWrapperType CefCToCppRefCounted<CefLayoutCToCpp, CefLayout, cef_layout_t>::
kWrapperType = WT_LAYOUT;