2017-01-11 00:00:30 +01:00
|
|
|
// Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
|
2012-07-25 13:52:03 +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.
|
|
|
|
//
|
2017-07-27 01:19:27 +02:00
|
|
|
// $hash=9dd667a1b78b7a224927942d2866023d6a369caf$
|
2017-05-17 11:29:28 +02:00
|
|
|
//
|
2012-07-25 13:52:03 +02:00
|
|
|
|
|
|
|
#include "libcef_dll/ctocpp/v8stack_trace_ctocpp.h"
|
2017-05-19 11:06:00 +02:00
|
|
|
#include "libcef_dll/ctocpp/v8stack_frame_ctocpp.h"
|
2012-07-25 13:52:03 +02:00
|
|
|
|
|
|
|
// STATIC METHODS - Body may be edited by hand.
|
|
|
|
|
|
|
|
CefRefPtr<CefV8StackTrace> CefV8StackTrace::GetCurrent(int frame_limit) {
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_v8stack_trace_t* _retval = cef_v8stack_trace_get_current(frame_limit);
|
2012-07-25 13:52:03 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefV8StackTraceCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
// VIRTUAL METHODS - Body may be edited by hand.
|
|
|
|
|
2012-10-29 22:46:02 +01:00
|
|
|
bool CefV8StackTraceCToCpp::IsValid() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_v8stack_trace_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, is_valid))
|
2012-10-29 22:46:02 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2015-04-26 20:40:01 +02:00
|
|
|
int _retval = _struct->is_valid(_struct);
|
2012-10-29 22:46:02 +01:00
|
|
|
|
|
|
|
// Return type: bool
|
2017-05-17 11:29:28 +02:00
|
|
|
return _retval ? true : false;
|
2012-10-29 22:46:02 +01:00
|
|
|
}
|
|
|
|
|
2012-07-25 13:52:03 +02:00
|
|
|
int CefV8StackTraceCToCpp::GetFrameCount() {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_v8stack_trace_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_frame_count))
|
2012-07-25 13:52:03 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2015-04-26 20:40:01 +02:00
|
|
|
int _retval = _struct->get_frame_count(_struct);
|
2012-07-25 13:52:03 +02:00
|
|
|
|
|
|
|
// Return type: simple
|
|
|
|
return _retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
CefRefPtr<CefV8StackFrame> CefV8StackTraceCToCpp::GetFrame(int index) {
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_v8stack_trace_t* _struct = GetStruct();
|
|
|
|
if (CEF_MEMBER_MISSING(_struct, get_frame))
|
2012-07-25 13:52:03 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
|
|
|
|
|
|
|
|
// Execute
|
2017-05-17 11:29:28 +02:00
|
|
|
cef_v8stack_frame_t* _retval = _struct->get_frame(_struct, index);
|
2012-07-25 13:52:03 +02:00
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefV8StackFrameCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefV8StackTraceCToCpp::CefV8StackTraceCToCpp() {}
|
2015-04-26 20:40:01 +02:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
cef_v8stack_trace_t*
|
|
|
|
CefCToCppRefCounted<CefV8StackTraceCToCpp,
|
|
|
|
CefV8StackTrace,
|
|
|
|
cef_v8stack_trace_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
CefV8StackTrace* c) {
|
2015-04-26 20:40:01 +02: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 CefCToCppRefCounted<CefV8StackTraceCToCpp,
|
|
|
|
CefV8StackTrace,
|
2017-07-27 01:19:27 +02:00
|
|
|
cef_v8stack_trace_t>::DebugObjCt
|
|
|
|
ATOMIC_DECLARATION;
|
2012-07-25 13:52:03 +02:00
|
|
|
#endif
|
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
template <>
|
|
|
|
CefWrapperType CefCToCppRefCounted<CefV8StackTraceCToCpp,
|
|
|
|
CefV8StackTrace,
|
|
|
|
cef_v8stack_trace_t>::kWrapperType =
|
|
|
|
WT_V8STACK_TRACE;
|