mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 119.0.6045.0 (#1204232)
Mac: 13.5+ build system w/ 14.0 base SDK (Xcode 15.0) is now required.
This commit is contained in:
@ -166,6 +166,7 @@ class CefDOMNode : public virtual CefBaseRefCounted {
|
||||
public:
|
||||
typedef std::map<CefString, CefString> AttributeMap;
|
||||
typedef cef_dom_node_type_t Type;
|
||||
typedef cef_dom_form_control_type_t FormControlType;
|
||||
|
||||
///
|
||||
/// Returns the type for this node.
|
||||
@ -194,14 +195,14 @@ class CefDOMNode : public virtual CefBaseRefCounted {
|
||||
///
|
||||
/// Returns true if this is a form control element node.
|
||||
///
|
||||
/*--cef()--*/
|
||||
/*--cef(default_retval=DOM_NODE_TYPE_UNSUPPORTED)--*/
|
||||
virtual bool IsFormControlElement() = 0;
|
||||
|
||||
///
|
||||
/// Returns the type of this form control element node.
|
||||
///
|
||||
/*--cef()--*/
|
||||
virtual CefString GetFormControlElementType() = 0;
|
||||
/*--cef(default_retval=DOM_FORM_CONTROL_TYPE_UNSUPPORTED)--*/
|
||||
virtual FormControlType GetFormControlElementType() = 0;
|
||||
|
||||
///
|
||||
/// Returns true if this object is pointing to the same handle as |that|
|
||||
|
Reference in New Issue
Block a user