Index: content/renderer/pepper/pepper_plugin_delegate_impl.cc |
diff --git a/content/renderer/pepper/pepper_plugin_delegate_impl.cc b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
index c53be6ada4e5c7c3ace522437a8e796d4b9047d7..0209babbc6f65de40969c000cba13c2bf4526f42 100644 |
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
@@ -1402,6 +1402,16 @@ std::string PepperPluginDelegateImpl::GetDeviceID() { |
return result; |
} |
+void PepperPluginDelegateImpl::GetLocalDataRestrictions( |
+ const GURL& document_url, |
+ const GURL& plugin_url, |
+ bool* block_access, |
+ bool* in_memory) { |
+ render_view_->Send( |
+ new PepperMsg_GetLocalDataRestrictions(document_url, plugin_url, |
+ block_access, in_memory)); |
+} |
+ |
base::SharedMemory* PepperPluginDelegateImpl::CreateAnonymousSharedMemory( |
uint32_t size) { |
if (size == 0) |