// Copyright (c) 2018 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. // // $hash=9a7519986c13a01f7ac10fd56027278967b886f4$ // #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::DebugObjCt ATOMIC_DECLARATION; #endif template <> CefWrapperType CefCToCppRefCounted::kWrapperType = WT_RESPONSE_FILTER;