2 * Automatically generated, do not edit this file directly
17 plugin_instance_evaluate (PluginInstance
*instance
, const char *code
)
22 return instance
->Evaluate (code
);
27 plugin_instance_get_actual_height (PluginInstance
*instance
)
30 // Need to find a proper way to get the default value for the specified type and return that if instance is NULL.
33 return instance
->GetActualHeight ();
38 plugin_instance_get_actual_width (PluginInstance
*instance
)
41 // Need to find a proper way to get the default value for the specified type and return that if instance is NULL.
44 return instance
->GetActualWidth ();
49 plugin_instance_get_allow_html_popup_window (PluginInstance
*instance
)
54 return instance
->GetAllowHtmlPopupWindow ();
59 plugin_instance_get_browser_host (PluginInstance
*instance
)
64 return instance
->GetBrowserHost ();
69 plugin_instance_get_enable_html_access (PluginInstance
*instance
)
74 return instance
->GetEnableHtmlAccess ();
79 plugin_instance_get_init_params (PluginInstance
*instance
)
84 return instance
->GetInitParams ();
89 plugin_instance_get_source (PluginInstance
*instance
)
94 return instance
->GetSource ();
99 plugin_instance_get_source_location (PluginInstance
*instance
)
101 if (instance
== NULL
)
104 return instance
->GetSourceLocation ();
109 plugin_instance_get_source_location_original (PluginInstance
*instance
)
111 if (instance
== NULL
)
114 return instance
->GetSourceLocationOriginal ();
119 plugin_instance_get_source_original (PluginInstance
*instance
)
121 if (instance
== NULL
)
124 return instance
->GetSourceOriginal ();
129 plugin_instance_get_surface (PluginInstance
*instance
)
131 if (instance
== NULL
)
134 return instance
->GetSurface ();
139 plugin_instance_get_windowless (PluginInstance
*instance
)
141 if (instance
== NULL
)
144 return instance
->GetWindowless ();
149 plugin_instance_report_exception (PluginInstance
*instance
, char *msg
, char *details
, char* *stack_trace
, int num_frames
)
151 if (instance
== NULL
)
154 instance
->ReportException (msg
, details
, stack_trace
, num_frames
);