2019-01-10 15:22:19 +01:00
|
|
|
// Copyright (c) 2019 The Chromium Embedded Framework Authors. All rights
|
2012-04-03 03:34:16 +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.
|
|
|
|
//
|
2019-01-23 17:10:23 +01:00
|
|
|
// $hash=b32f1d7c13f178735b3364d8cfe32881d4132b8e$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
#include "libcef_dll/cpptoc/cookie_visitor_cpptoc.h"
|
2019-01-23 16:42:12 +01:00
|
|
|
#include "libcef_dll/shutdown_checker.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
namespace {
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// MEMBER FUNCTIONS - Body may be edited by hand.
|
|
|
|
|
|
|
|
int CEF_CALLBACK cookie_visitor_visit(struct _cef_cookie_visitor_t* self,
|
2017-05-17 11:29:28 +02:00
|
|
|
const struct _cef_cookie_t* cookie,
|
|
|
|
int count,
|
|
|
|
int total,
|
|
|
|
int* deleteCookie) {
|
2019-01-23 16:42:12 +01:00
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
DCHECK(self);
|
|
|
|
if (!self)
|
|
|
|
return 0;
|
|
|
|
// Verify param: cookie; type: struct_byref_const
|
|
|
|
DCHECK(cookie);
|
|
|
|
if (!cookie)
|
|
|
|
return 0;
|
|
|
|
// Verify param: deleteCookie; type: bool_byref
|
|
|
|
DCHECK(deleteCookie);
|
|
|
|
if (!deleteCookie)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// Translate param: cookie; type: struct_byref_const
|
|
|
|
CefCookie cookieObj;
|
|
|
|
if (cookie)
|
|
|
|
cookieObj.Set(*cookie, false);
|
|
|
|
// Translate param: deleteCookie; type: bool_byref
|
2017-05-17 11:29:28 +02:00
|
|
|
bool deleteCookieBool = (deleteCookie && *deleteCookie) ? true : false;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Execute
|
|
|
|
bool _retval = CefCookieVisitorCppToC::Get(self)->Visit(
|
2017-05-17 11:29:28 +02:00
|
|
|
cookieObj, count, total, deleteCookieBool);
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Restore param: deleteCookie; type: bool_byref
|
|
|
|
if (deleteCookie)
|
2017-05-17 11:29:28 +02:00
|
|
|
*deleteCookie = deleteCookieBool ? true : false;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
// Return type: bool
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
} // namespace
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
CefCookieVisitorCppToC::CefCookieVisitorCppToC() {
|
|
|
|
GetStruct()->visit = cookie_visitor_visit;
|
|
|
|
}
|
|
|
|
|
2019-01-23 16:42:12 +01:00
|
|
|
// DESTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefCookieVisitorCppToC::~CefCookieVisitorCppToC() {
|
|
|
|
shutdown_checker::AssertNotShutdown();
|
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefRefPtr<CefCookieVisitor> CefCppToCRefCounted<
|
|
|
|
CefCookieVisitorCppToC,
|
|
|
|
CefCookieVisitor,
|
|
|
|
cef_cookie_visitor_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
cef_cookie_visitor_t* s) {
|
2015-04-26 20:40:01 +02:00
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
2012-04-03 03:34:16 +02:00
|
|
|
}
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCppToCRefCounted<CefCookieVisitorCppToC,
|
|
|
|
CefCookieVisitor,
|
|
|
|
cef_cookie_visitor_t>::kWrapperType =
|
|
|
|
WT_COOKIE_VISITOR;
|