2017-01-11 00:00:30 +01:00
|
|
|
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
2015-02-11 19:15:04 +01:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
//
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// This file was generated by the CEF translator tool. If making changes by
|
|
|
|
// hand only do so within the body of existing method and function
|
|
|
|
// implementations. See the translator.README.txt file in the tools directory
|
|
|
|
// for more information.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/sslinfo_cpptoc.h"
|
2016-09-02 12:01:33 +02:00
|
|
|
#include "libcef_dll/cpptoc/x509certificate_cpptoc.h"
|
2015-02-11 19:15:04 +01:00
|
|
|
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
namespace {
|
|
|
|
|
2015-02-11 19:15:04 +01:00
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
2015-12-18 19:03:03 +01:00
|
|
|
cef_cert_status_t CEF_CALLBACK sslinfo_get_cert_status(
|
|
|
|
struct _cef_sslinfo_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return CERT_STATUS_NONE;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_cert_status_t _retval = CefSSLInfoCppToC::Get(self)->GetCertStatus();
|
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2016-09-02 12:01:33 +02:00
|
|
|
struct _cef_x509certificate_t* CEF_CALLBACK sslinfo_get_x509certificate(
|
2015-02-11 19:15:04 +01:00
|
|
|
struct _cef_sslinfo_t* self) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2016-09-02 12:01:33 +02:00
|
|
|
CefRefPtr<CefX509Certificate> _retval = CefSSLInfoCppToC::Get(
|
|
|
|
self)->GetX509Certificate();
|
2015-02-11 19:15:04 +01:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
2016-09-02 12:01:33 +02:00
|
|
|
return CefX509CertificateCppToC::Wrap(_retval);
|
2015-12-18 19:03:03 +01:00
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
} // namespace
|
|
|
|
|
2015-02-11 19:15:04 +01:00
|
|
|
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
CefSSLInfoCppToC::CefSSLInfoCppToC() {
|
2015-12-18 19:03:03 +01:00
|
|
|
GetStruct()->get_cert_status = sslinfo_get_cert_status;
|
2016-09-02 12:01:33 +02:00
|
|
|
GetStruct()->get_x509certificate = sslinfo_get_x509certificate;
|
2015-04-26 20:40:01 +02:00
|
|
|
}
|
|
|
|
|
2017-02-09 23:07:43 +01:00
|
|
|
template<> CefRefPtr<CefSSLInfo> CefCppToCRefCounted<CefSSLInfoCppToC,
|
|
|
|
CefSSLInfo, cef_sslinfo_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
cef_sslinfo_t* s) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
2015-02-11 19:15:04 +01:00
|
|
|
}
|
|
|
|
|
2016-09-01 13:24:30 +02:00
|
|
|
#if DCHECK_IS_ON()
|
2017-02-09 23:07:43 +01:00
|
|
|
template<> base::AtomicRefCount CefCppToCRefCounted<CefSSLInfoCppToC,
|
|
|
|
CefSSLInfo, cef_sslinfo_t>::DebugObjCt = 0;
|
2015-02-11 19:15:04 +01:00
|
|
|
#endif
|
|
|
|
|
2017-02-09 23:07:43 +01:00
|
|
|
template<> CefWrapperType CefCppToCRefCounted<CefSSLInfoCppToC, CefSSLInfo,
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_sslinfo_t>::kWrapperType = WT_SSLINFO;
|