mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Remove CefV8Value::CreateObject variant that accepts only one argument (issue #449).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@440 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -2562,18 +2562,11 @@ public:
|
||||
/*--cef(optional_param=value)--*/
|
||||
static CefRefPtr<CefV8Value> CreateString(const CefString& value);
|
||||
///
|
||||
// Create a new CefV8Value object of type object. This method should only be
|
||||
// called from within the scope of a CefV8ContextHandler, CefV8Handler or
|
||||
// CefV8Accessor callback, or in combination with calling Enter() and Exit()
|
||||
// on a stored CefV8Context reference.
|
||||
///
|
||||
/*--cef(optional_param=user_data)--*/
|
||||
static CefRefPtr<CefV8Value> CreateObject(CefRefPtr<CefBase> user_data);
|
||||
///
|
||||
// Create a new CefV8Value object of type object with accessors. This method
|
||||
// should only be called from within the scope of a CefV8ContextHandler,
|
||||
// CefV8Handler or CefV8Accessor callback, or in combination with calling
|
||||
// Enter() and Exit() on a stored CefV8Context reference.
|
||||
// Create a new CefV8Value object of type object with optional user data and
|
||||
// accessor. This method should only be called from within the scope of a
|
||||
// CefV8ContextHandler, CefV8Handler or CefV8Accessor callback, or in
|
||||
// combination with calling Enter() and Exit() on a stored CefV8Context
|
||||
// reference.
|
||||
///
|
||||
/*--cef(capi_name=cef_v8value_create_object_with_accessor,
|
||||
optional_param=user_data,optional_param=accessor)--*/
|
||||
|
@@ -2563,16 +2563,8 @@ CEF_EXPORT cef_v8value_t* cef_v8value_create_date(const cef_time_t* date);
|
||||
CEF_EXPORT cef_v8value_t* cef_v8value_create_string(const cef_string_t* value);
|
||||
|
||||
///
|
||||
// Create a new cef_v8value_t object of type object. This function should only
|
||||
// be called from within the scope of a cef_v8context_tHandler, cef_v8handler_t
|
||||
// or cef_v8accessor_t callback, or in combination with calling enter() and
|
||||
// exit() on a stored cef_v8context_t reference.
|
||||
///
|
||||
CEF_EXPORT cef_v8value_t* cef_v8value_create_object(cef_base_t* user_data);
|
||||
|
||||
///
|
||||
// Create a new cef_v8value_t object of type object with accessors. This
|
||||
// function should only be called from within the scope of a
|
||||
// Create a new cef_v8value_t object of type object with optional user data and
|
||||
// accessor. This function should only be called from within the scope of a
|
||||
// cef_v8context_tHandler, cef_v8handler_t or cef_v8accessor_t callback, or in
|
||||
// combination with calling enter() and exit() on a stored cef_v8context_t
|
||||
// reference.
|
||||
|
Reference in New Issue
Block a user