2018-01-03 21:46:26 +01:00
|
|
|
// Copyright (c) 2018 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.
|
|
|
|
//
|
2018-01-03 21:46:26 +01:00
|
|
|
// $hash=4fec87b6907d9c957ea58ac1d1df937799b9a07e$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2016-02-24 00:27:05 +01:00
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/resolve_callback_cpptoc.h"
|
|
|
|
#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) {
|
2016-02-24 00:27:05 +01:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return;
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-09-01 13:24:30 +02:00
|
|
|
#if DCHECK_IS_ON()
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
base::AtomicRefCount CefCppToCRefCounted<CefResolveCallbackCppToC,
|
|
|
|
CefResolveCallback,
|
2017-07-27 01:19:27 +02:00
|
|
|
cef_resolve_callback_t>::DebugObjCt
|
|
|
|
ATOMIC_DECLARATION;
|
2016-02-24 00:27:05 +01:00
|
|
|
#endif
|
|
|
|
|
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;
|