2023-01-02 23:47:15 +01:00
|
|
|
// Copyright (c) 2023 The Chromium Embedded Framework Authors. All rights
|
2016-02-24 00:27:05 +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.
|
|
|
|
//
|
2023-01-02 23:47:15 +01:00
|
|
|
// $hash=b9b5047524de83c24a2911a83b1cb48fc472774a$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2016-02-24 00:27:05 +01:00
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/resolve_callback_cpptoc.h"
|
2019-01-23 16:42:12 +01:00
|
|
|
#include "libcef_dll/shutdown_checker.h"
|
2016-02-24 00:27:05 +01:00
|
|
|
#include "libcef_dll/transfer_util.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
void CEF_CALLBACK
|
|
|
|
resolve_callback_on_resolve_completed(struct _cef_resolve_callback_t* self,
|
|
|
|
cef_errorcode_t result,
|
|
|
|
cef_string_list_t resolved_ips) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2016-02-24 00:27:05 +01:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
2023-01-02 23:47:15 +01:00
|
|
|
if (!self) {
|
2016-02-24 00:27:05 +01:00
|
|
|
return;
|
2023-01-02 23:47:15 +01:00
|
|
|
}
|
2016-02-24 00:27:05 +01:00
|
|
|
// Unverified params: resolved_ips
|
|
|
|
|
|
|
|
// Translate param: resolved_ips; type: string_vec_byref_const
|
|
|
|
std::vector<CefString> resolved_ipsList;
|
|
|
|
transfer_string_list_contents(resolved_ips, resolved_ipsList);
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
CefResolveCallbackCppToC::Get(self)->OnResolveCompleted(result,
|
|
|
|
resolved_ipsList);
|
2016-02-24 00:27:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefResolveCallbackCppToC::CefResolveCallbackCppToC() {
|
|
|
|
GetStruct()->on_resolve_completed = resolve_callback_on_resolve_completed;
|
|
|
|
}
|
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefResolveCallbackCppToC::~CefResolveCallbackCppToC() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRefPtr<CefResolveCallback> CefCppToCRefCounted<
|
|
|
|
CefResolveCallbackCppToC,
|
|
|
|
CefResolveCallback,
|
|
|
|
cef_resolve_callback_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
cef_resolve_callback_t* s) {
|
2016-02-24 00:27:05 +01:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
2020-01-15 14:53:19 +01:00
|
|
|
return nullptr;
|
2016-02-24 00:27:05 +01:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCppToCRefCounted<CefResolveCallbackCppToC,
|
|
|
|
CefResolveCallback,
|
|
|
|
cef_resolve_callback_t>::kWrapperType =
|
2016-02-24 00:27:05 +01:00
|
|
|
WT_RESOLVE_CALLBACK;
|