| 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..c7421298aaf38a5239ebb4c80df6bb02dc3f08f8 100644
|
| --- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| +++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc
|
| @@ -1402,6 +1402,14 @@ std::string PepperPluginDelegateImpl::GetDeviceID() {
|
| return result;
|
| }
|
|
|
| +void PepperPluginDelegateImpl::GetLocalDataRestrictions(const GURL& url,
|
| + bool* block_access,
|
| + bool* in_memory) {
|
| + render_view_->Send(
|
| + new PepperMsg_GetLocalDataRestrictions(
|
| + render_view_->GetRoutingID(), url, block_access, in_memory));
|
| +}
|
| +
|
| base::SharedMemory* PepperPluginDelegateImpl::CreateAnonymousSharedMemory(
|
| uint32_t size) {
|
| if (size == 0)
|
|
|