- Auto-generate all C/C++ translation code (issue #33).

- Change index parameter types from int to size_t to make 0-based range implicit.
- Make CefPrintOptions and CefMenuInfo proper wrapper classes.
- Normalize the naming of menu-related types.
- Remove unused command_line variable from test_suite.cc.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@408 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2011-12-08 01:38:30 +00:00
parent b4653ce1da
commit 64e08c2918
238 changed files with 14703 additions and 4322 deletions

View File

@@ -4,10 +4,10 @@
//
// ---------------------------------------------------------------------------
//
// A portion of this file was generated by the CEF translator tool. When
// making changes by hand only do so within the body of existing static and
// virtual method implementations. See the translator.README.txt file in the
// tools directory for more information.
// 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/cpptoc/v8value_cpptoc.h"
@@ -20,32 +20,62 @@ bool CefV8HandlerCToCpp::Execute(const CefString& name,
CefRefPtr<CefV8Value> object, const CefV8ValueList& arguments,
CefRefPtr<CefV8Value>& retval, CefString& exception)
{
if(CEF_MEMBER_MISSING(struct_, execute))
if (CEF_MEMBER_MISSING(struct_, execute))
return false;
cef_v8value_t** argsStructPtr = NULL;
int argsSize = arguments.size();
if(argsSize > 0) {
argsStructPtr = new cef_v8value_t*[argsSize];
for(int i = 0; i < argsSize; ++i)
argsStructPtr[i] = CefV8ValueCppToC::Wrap(arguments[i]);
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Verify param: name; type: string_byref_const
DCHECK(!name.empty());
if (name.empty())
return false;
// Verify param: object; type: refptr_diff
DCHECK(object.get());
if (!object.get())
return false;
// Translate param: arguments; type: refptr_vec_diff_byref_const
const size_t argumentsCount = arguments.size();
cef_v8value_t** argumentsList = NULL;
if (argumentsCount > 0) {
argumentsList = new cef_v8value_t*[argumentsCount];
DCHECK(argumentsList);
if (argumentsList) {
for (size_t i = 0; i < argumentsCount; ++i) {
argumentsList[i] = CefV8ValueCppToC::Wrap(arguments[i]);
}
}
}
// Translate param: retval; type: refptr_diff_byref
cef_v8value_t* retvalStruct = NULL;
if(retval.get())
retvalStruct = CefV8ValueCppToC::Wrap(retval);
cef_v8value_t* retvalOrig = retvalStruct;
// Execute
int _retval = struct_->execute(struct_,
name.GetStruct(),
CefV8ValueCppToC::Wrap(object),
argumentsCount,
argumentsList,
&retvalStruct,
exception.GetWritableStruct());
// Restore param:retval; type: refptr_diff_byref
if (retvalStruct) {
if (retvalStruct != retvalOrig) {
retval = CefV8ValueCppToC::Unwrap(retvalStruct);
}
} else {
retval = NULL;
}
cef_v8value_t* retvalStruct = NULL;
int rv = struct_->execute(struct_, name.GetStruct(),
CefV8ValueCppToC::Wrap(object), argsSize, argsStructPtr, &retvalStruct,
exception.GetWritableStruct());
if(retvalStruct)
retval = CefV8ValueCppToC::Unwrap(retvalStruct);
if(argsStructPtr)
delete [] argsStructPtr;
return rv ? true : false;
// Return type: bool
return _retval?true:false;
}
#ifndef NDEBUG
template<> long CefCToCpp<CefV8HandlerCToCpp, CefV8Handler,
cef_v8handler_t>::DebugObjCt = 0;