Index: webkit/plugins/ppapi/mock_plugin_delegate.cc |
diff --git a/webkit/plugins/ppapi/mock_plugin_delegate.cc b/webkit/plugins/ppapi/mock_plugin_delegate.cc |
index 2fce82cd951ea65a0a95bd90fa3bc904184e3e0f..674fcdfe08c888b6f64d963b069c76518811e354 100644 |
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc |
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc |
@@ -460,5 +460,12 @@ std::string MockPluginDelegate::GetDeviceID() { |
return std::string(); |
} |
+void MockPluginDelegate::GetLocalDataRestrictions(const GURL& url, |
+ bool* block_access, |
+ bool* in_memory) { |
+ *block_access = false; |
+ *in_memory = false; |
+} |
+ |
} // namespace ppapi |
} // namespace webkit |