2015-01-05 14:03:50 +01:00
|
|
|
// Copyright (c) 2015 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "libcef_dll/ctocpp/v8stack_frame_ctocpp.h"
|
|
|
|
#include "libcef_dll/ctocpp/v8stack_trace_ctocpp.h"
|
|
|
|
|
|
|
|
|
|
|
|
// STATIC METHODS - Body may be edited by hand.
|
|
|
|
|
|
|
|
CefRefPtr<CefV8StackTrace> CefV8StackTrace::GetCurrent(int frame_limit) {
|
|
|
|
// 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.
|
|
|
|
|
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
|
|
|
|
return _retval?true:false;
|
|
|
|
}
|
|
|
|
|
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
|
2015-04-26 20:40:01 +02:00
|
|
|
cef_v8stack_frame_t* _retval = _struct->get_frame(_struct,
|
2012-07-25 13:52:03 +02:00
|
|
|
index);
|
|
|
|
|
|
|
|
// Return type: refptr_same
|
|
|
|
return CefV8StackFrameCToCpp::Wrap(_retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
// CONSTRUCTOR - Do not edit by hand.
|
|
|
|
|
|
|
|
CefV8StackTraceCToCpp::CefV8StackTraceCToCpp() {
|
|
|
|
}
|
|
|
|
|
|
|
|
template<> cef_v8stack_trace_t* CefCToCpp<CefV8StackTraceCToCpp,
|
|
|
|
CefV8StackTrace, cef_v8stack_trace_t>::UnwrapDerived(CefWrapperType type,
|
|
|
|
CefV8StackTrace* c) {
|
|
|
|
NOTREACHED() << "Unexpected class type: " << type;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-07-25 13:52:03 +02:00
|
|
|
#ifndef NDEBUG
|
2014-07-15 00:18:51 +02:00
|
|
|
template<> base::AtomicRefCount CefCToCpp<CefV8StackTraceCToCpp,
|
|
|
|
CefV8StackTrace, cef_v8stack_trace_t>::DebugObjCt = 0;
|
2012-07-25 13:52:03 +02:00
|
|
|
#endif
|
|
|
|
|
2015-04-26 20:40:01 +02:00
|
|
|
template<> CefWrapperType CefCToCpp<CefV8StackTraceCToCpp, CefV8StackTrace,
|
|
|
|
cef_v8stack_trace_t>::kWrapperType = WT_V8STACK_TRACE;
|