diff options
Diffstat (limited to 'content/renderer/pepper/pepper_plugin_instance_impl.cc')
-rw-r--r-- | content/renderer/pepper/pepper_plugin_instance_impl.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/renderer/pepper/pepper_plugin_instance_impl.cc b/content/renderer/pepper/pepper_plugin_instance_impl.cc index 8a1ad19..730361f 100644 --- a/content/renderer/pepper/pepper_plugin_instance_impl.cc +++ b/content/renderer/pepper/pepper_plugin_instance_impl.cc @@ -2934,6 +2934,11 @@ int PepperPluginInstanceImpl::MakePendingFileRefRendererHost( scoped_ptr<ppapi::host::ResourceHost>(file_ref_host)); } +void PepperPluginInstanceImpl::SetEmbedProperty(PP_Var key, + PP_Var value) { + message_channel_->SetReadOnlyProperty(key, value); +} + bool PepperPluginInstanceImpl::CanAccessMainFrame() const { if (!container_) return false; |