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,18 +9,21 @@
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=816066f7dd4898066b737cc6a990a8b384d3ae9a$
//
#include "libcef_dll/cpptoc/web_plugin_info_visitor_cpptoc.h"
#include "libcef_dll/ctocpp/web_plugin_info_ctocpp.h"
namespace {
// MEMBER FUNCTIONS - Body may be edited by hand.
int CEF_CALLBACK web_plugin_info_visitor_visit(
struct _cef_web_plugin_info_visitor_t* self, cef_web_plugin_info_t* info,
int count, int total) {
int CEF_CALLBACK
web_plugin_info_visitor_visit(struct _cef_web_plugin_info_visitor_t* self,
cef_web_plugin_info_t* info,
int count,
int total) {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
DCHECK(self);
@ -33,9 +36,7 @@ int CEF_CALLBACK web_plugin_info_visitor_visit(
// Execute
bool _retval = CefWebPluginInfoVisitorCppToC::Get(self)->Visit(
CefWebPluginInfoCToCpp::Wrap(info),
count,
total);
CefWebPluginInfoCToCpp::Wrap(info), count, total);
// Return type: bool
return _retval;
@ -43,25 +44,34 @@ int CEF_CALLBACK web_plugin_info_visitor_visit(
} // namespace
// CONSTRUCTOR - Do not edit by hand.
CefWebPluginInfoVisitorCppToC::CefWebPluginInfoVisitorCppToC() {
GetStruct()->visit = web_plugin_info_visitor_visit;
}
template<> CefRefPtr<CefWebPluginInfoVisitor> CefCppToCRefCounted<CefWebPluginInfoVisitorCppToC,
CefWebPluginInfoVisitor, cef_web_plugin_info_visitor_t>::UnwrapDerived(
CefWrapperType type, cef_web_plugin_info_visitor_t* s) {
template <>
CefRefPtr<CefWebPluginInfoVisitor> CefCppToCRefCounted<
CefWebPluginInfoVisitorCppToC,
CefWebPluginInfoVisitor,
cef_web_plugin_info_visitor_t>::UnwrapDerived(CefWrapperType type,
cef_web_plugin_info_visitor_t*
s) {
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCppToCRefCounted<CefWebPluginInfoVisitorCppToC,
CefWebPluginInfoVisitor, cef_web_plugin_info_visitor_t>::DebugObjCt = 0;
template <>
base::AtomicRefCount
CefCppToCRefCounted<CefWebPluginInfoVisitorCppToC,
CefWebPluginInfoVisitor,
cef_web_plugin_info_visitor_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCppToCRefCounted<CefWebPluginInfoVisitorCppToC,
CefWebPluginInfoVisitor, cef_web_plugin_info_visitor_t>::kWrapperType =
WT_WEB_PLUGIN_INFO_VISITOR;
template <>
CefWrapperType
CefCppToCRefCounted<CefWebPluginInfoVisitorCppToC,
CefWebPluginInfoVisitor,
cef_web_plugin_info_visitor_t>::kWrapperType =
WT_WEB_PLUGIN_INFO_VISITOR;