// Copyright (c) 2019 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=e158c4785c2d13208735dc22b5b638f7983df04e$ // #include "libcef_dll/ctocpp/v8stack_trace_ctocpp.h" #include "libcef_dll/ctocpp/v8stack_frame_ctocpp.h" #include "libcef_dll/shutdown_checker.h" // STATIC METHODS - Body may be edited by hand. NO_SANITIZE("cfi-icall") CefRefPtr CefV8StackTrace::GetCurrent(int frame_limit) { shutdown_checker::AssertNotShutdown(); // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_v8stack_trace_t* _retval = cef_v8stack_trace_get_current(frame_limit); // Return type: refptr_same return CefV8StackTraceCToCpp::Wrap(_retval); } // VIRTUAL METHODS - Body may be edited by hand. NO_SANITIZE("cfi-icall") bool CefV8StackTraceCToCpp::IsValid() { shutdown_checker::AssertNotShutdown(); cef_v8stack_trace_t* _struct = GetStruct(); if (CEF_MEMBER_MISSING(_struct, is_valid)) return false; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->is_valid(_struct); // Return type: bool return _retval ? true : false; } NO_SANITIZE("cfi-icall") int CefV8StackTraceCToCpp::GetFrameCount() { shutdown_checker::AssertNotShutdown(); cef_v8stack_trace_t* _struct = GetStruct(); if (CEF_MEMBER_MISSING(_struct, get_frame_count)) return 0; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute int _retval = _struct->get_frame_count(_struct); // Return type: simple return _retval; } NO_SANITIZE("cfi-icall") CefRefPtr CefV8StackTraceCToCpp::GetFrame(int index) { shutdown_checker::AssertNotShutdown(); cef_v8stack_trace_t* _struct = GetStruct(); if (CEF_MEMBER_MISSING(_struct, get_frame)) return NULL; // AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING // Execute cef_v8stack_frame_t* _retval = _struct->get_frame(_struct, index); // Return type: refptr_same return CefV8StackFrameCToCpp::Wrap(_retval); } // CONSTRUCTOR - Do not edit by hand. CefV8StackTraceCToCpp::CefV8StackTraceCToCpp() {} // DESTRUCTOR - Do not edit by hand. CefV8StackTraceCToCpp::~CefV8StackTraceCToCpp() { shutdown_checker::AssertNotShutdown(); } template <> cef_v8stack_trace_t* CefCToCppRefCounted::UnwrapDerived(CefWrapperType type, CefV8StackTrace* c) { NOTREACHED() << "Unexpected class type: " << type; return NULL; } template <> CefWrapperType CefCToCppRefCounted::kWrapperType = WT_V8STACK_TRACE;