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,11 +9,12 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=cacdb914520e516cc103d8a3318ae768339df314$
//
#include "libcef_dll/ctocpp/sslinfo_ctocpp.h"
#include "libcef_dll/ctocpp/x509certificate_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.
cef_cert_status_t CefSSLInfoCToCpp::GetCertStatus() {
@@ -44,22 +45,27 @@ CefRefPtr<CefX509Certificate> CefSSLInfoCToCpp::GetX509Certificate() {
return CefX509CertificateCToCpp::Wrap(_retval);
}
// CONSTRUCTOR - Do not edit by hand.
CefSSLInfoCToCpp::CefSSLInfoCToCpp() {
}
CefSSLInfoCToCpp::CefSSLInfoCToCpp() {}
template<> cef_sslinfo_t* CefCToCppRefCounted<CefSSLInfoCToCpp, CefSSLInfo,
cef_sslinfo_t>::UnwrapDerived(CefWrapperType type, CefSSLInfo* c) {
template <>
cef_sslinfo_t*
CefCToCppRefCounted<CefSSLInfoCToCpp, CefSSLInfo, cef_sslinfo_t>::UnwrapDerived(
CefWrapperType type,
CefSSLInfo* c) {
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCToCppRefCounted<CefSSLInfoCToCpp,
CefSSLInfo, cef_sslinfo_t>::DebugObjCt = 0;
template <>
base::AtomicRefCount CefCToCppRefCounted<CefSSLInfoCToCpp,
CefSSLInfo,
cef_sslinfo_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCppRefCounted<CefSSLInfoCToCpp, CefSSLInfo,
cef_sslinfo_t>::kWrapperType = WT_SSLINFO;
template <>
CefWrapperType CefCToCppRefCounted<CefSSLInfoCToCpp,
CefSSLInfo,
cef_sslinfo_t>::kWrapperType = WT_SSLINFO;