summaryrefslogtreecommitdiffstats
path: root/o3d/gpu_plugin/np_utils/np_browser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'o3d/gpu_plugin/np_utils/np_browser.cc')
-rw-r--r--o3d/gpu_plugin/np_utils/np_browser.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/o3d/gpu_plugin/np_utils/np_browser.cc b/o3d/gpu_plugin/np_utils/np_browser.cc
index 6dcbc3d..d0c50c8 100644
--- a/o3d/gpu_plugin/np_utils/np_browser.cc
+++ b/o3d/gpu_plugin/np_utils/np_browser.cc
@@ -71,6 +71,19 @@ bool NPBrowser::GetProperty(NPP npp,
return netscape_funcs_->getproperty(npp, object, name, result);
}
+bool NPBrowser::SetProperty(NPP npp,
+ NPObject* object,
+ NPIdentifier name,
+ const NPVariant* result) {
+ return netscape_funcs_->setproperty(npp, object, name, result);
+}
+
+bool NPBrowser::RemoveProperty(NPP npp,
+ NPObject* object,
+ NPIdentifier name) {
+ return netscape_funcs_->removeproperty(npp, object, name);
+}
+
bool NPBrowser::HasMethod(NPP npp,
NPObject* object,
NPIdentifier name) {