cef/libcef_dll/ctocpp/response_filter_ctocpp.cc

81 lines
2.4 KiB
C++
Raw Normal View History

// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
// 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/ctocpp/response_filter_ctocpp.h"
// VIRTUAL METHODS - Body may be edited by hand.
bool CefResponseFilterCToCpp::InitFilter() {
cef_response_filter_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, init_filter))
return false;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->init_filter(_struct);
// Return type: bool
return _retval?true:false;
}
CefResponseFilter::FilterStatus CefResponseFilterCToCpp::Filter(void* data_in,
size_t data_in_size, size_t& data_in_read, void* data_out,
size_t data_out_size, size_t& data_out_written) {
cef_response_filter_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, filter))
return RESPONSE_FILTER_ERROR;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: data_out; type: simple_byaddr
DCHECK(data_out);
if (!data_out)
return RESPONSE_FILTER_ERROR;
// Unverified params: data_in
// Execute
cef_response_filter_status_t _retval = _struct->filter(_struct,
data_in,
data_in_size,
&data_in_read,
data_out,
data_out_size,
&data_out_written);
// Return type: simple
return _retval;
}
// CONSTRUCTOR - Do not edit by hand.
CefResponseFilterCToCpp::CefResponseFilterCToCpp() {
}
template<> cef_response_filter_t* CefCToCppRefCounted<CefResponseFilterCToCpp,
CefResponseFilter, cef_response_filter_t>::UnwrapDerived(
CefWrapperType type, CefResponseFilter* c) {
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#if DCHECK_IS_ON()
template<> base::AtomicRefCount CefCToCppRefCounted<CefResponseFilterCToCpp,
CefResponseFilter, cef_response_filter_t>::DebugObjCt = 0;
#endif
template<> CefWrapperType CefCToCppRefCounted<CefResponseFilterCToCpp,
CefResponseFilter, cef_response_filter_t>::kWrapperType =
WT_RESPONSE_FILTER;