2020-01-06 10:59:05 +01:00
|
|
|
// Copyright (c) 2020 The Chromium Embedded Framework Authors. All rights
|
2012-06-19 18:29:49 +02: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.
|
|
|
|
//
|
2020-01-15 14:53:19 +01:00
|
|
|
// $hash=81e91e1d45ee86a325f375002d82241a381fde91$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-06-19 18:29:49 +02:00
|
|
|
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/cpptoc/urlrequest_cpptoc.h"
|
2015-03-02 21:25:14 +01:00
|
|
|
#include "libcef_dll/cpptoc/request_context_cpptoc.h"
|
2017-05-17 11:29:28 +02:00
|
|
|
#include "libcef_dll/cpptoc/request_cpptoc.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
#include "libcef_dll/cpptoc/response_cpptoc.h"
|
|
|
|
#include "libcef_dll/ctocpp/urlrequest_client_ctocpp.h"
|
2019-01-23 16:42:12 +01:00
|
|
|
#include "libcef_dll/shutdown_checker.h"
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// GLOBAL FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CEF_EXPORT cef_urlrequest_t* cef_urlrequest_create(
|
|
|
|
cef_request_t* request,
|
2015-03-02 21:25:14 +01:00
|
|
|
struct _cef_urlrequest_client_t* client,
|
|
|
|
cef_request_context_t* request_context) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Verify param: request; type: refptr_same
|
|
|
|
DCHECK(request);
|
|
|
|
if (!request)
|
|
|
|
return NULL;
|
|
|
|
// Verify param: client; type: refptr_diff
|
|
|
|
DCHECK(client);
|
|
|
|
if (!client)
|
|
|
|
return NULL;
|
2015-03-02 21:25:14 +01:00
|
|
|
// Unverified params: request_context
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefURLRequest> _retval =
|
|
|
|
CefURLRequest::Create(CefRequestCppToC::Unwrap(request),
|
|
|
|
CefURLRequestClientCToCpp::Wrap(client),
|
|
|
|
CefRequestContextCppToC::Unwrap(request_context));
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefURLRequestCppToC::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
namespace {
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_request_t* CEF_CALLBACK
|
|
|
|
urlrequest_get_request(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefRefPtr<CefRequest> _retval = CefURLRequestCppToC::Get(self)->GetRequest();
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefRequestCppToC::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
struct _cef_urlrequest_client_t* CEF_CALLBACK
|
|
|
|
urlrequest_get_client(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefURLRequestClient> _retval =
|
|
|
|
CefURLRequestCppToC::Get(self)->GetClient();
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// Return type: refptr_diff
|
|
|
|
return CefURLRequestClientCToCpp::Unwrap(_retval);
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_urlrequest_status_t CEF_CALLBACK
|
|
|
|
urlrequest_get_request_status(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return UR_UNKNOWN;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_urlrequest_status_t _retval =
|
|
|
|
CefURLRequestCppToC::Get(self)->GetRequestStatus();
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_errorcode_t CEF_CALLBACK
|
|
|
|
urlrequest_get_request_error(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return ERR_NONE;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
cef_errorcode_t _retval = CefURLRequestCppToC::Get(self)->GetRequestError();
|
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_response_t* CEF_CALLBACK
|
|
|
|
urlrequest_get_response(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefRefPtr<CefResponse> _retval =
|
|
|
|
CefURLRequestCppToC::Get(self)->GetResponse();
|
2012-06-19 18:29:49 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefResponseCppToC::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2018-01-03 22:14:29 +01:00
|
|
|
int CEF_CALLBACK
|
|
|
|
urlrequest_response_was_cached(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2018-01-03 22:14:29 +01:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefURLRequestCppToC::Get(self)->ResponseWasCached();
|
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
void CEF_CALLBACK urlrequest_cancel(struct _cef_urlrequest_t* self) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Execute
|
|
|
|
CefURLRequestCppToC::Get(self)->Cancel();
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
} // namespace
|
|
|
|
|
2012-06-19 18:29:49 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
CefURLRequestCppToC::CefURLRequestCppToC() {
|
|
|
|
GetStruct()->get_request = urlrequest_get_request;
|
|
|
|
GetStruct()->get_client = urlrequest_get_client;
|
|
|
|
GetStruct()->get_request_status = urlrequest_get_request_status;
|
|
|
|
GetStruct()->get_request_error = urlrequest_get_request_error;
|
|
|
|
GetStruct()->get_response = urlrequest_get_response;
|
2018-01-03 22:14:29 +01:00
|
|
|
GetStruct()->response_was_cached = urlrequest_response_was_cached;
|
2015-04-26 20:40:01 +02:00
|
|
|
GetStruct()->cancel = urlrequest_cancel;
|
|
|
|
}
|
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefURLRequestCppToC::~CefURLRequestCppToC() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRefPtr<CefURLRequest>
|
|
|
|
CefCppToCRefCounted<CefURLRequestCppToC, CefURLRequest, cef_urlrequest_t>::
|
|
|
|
UnwrapDerived(CefWrapperType type, cef_urlrequest_t* s) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2012-06-19 18:29:49 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCppToCRefCounted<CefURLRequestCppToC,
|
|
|
|
CefURLRequest,
|
|
|
|
cef_urlrequest_t>::kWrapperType =
|
|
|
|
WT_URLREQUEST;
|