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 b648e68c9feac1f5fbb018a120d5ccb8efbf4d2c..bf8d2827ac53eb6df10f37968e31f72f00255a22 100644 |
--- a/webkit/plugins/ppapi/mock_plugin_delegate.cc |
+++ b/webkit/plugins/ppapi/mock_plugin_delegate.cc |
@@ -138,10 +138,17 @@ bool MockPluginDelegate::AsyncOpenFile(const FilePath& path, |
} |
bool MockPluginDelegate::AsyncOpenFileSystemURL( |
- const GURL& path, int flags, const AsyncOpenFileCallback& callback) { |
+ const GURL& path, |
+ int flags, |
+ const AsyncOpenFileSystemURLCallback& callback) { |
return false; |
} |
+base::Callback<void (base::PlatformFileError)> |
+MockPluginDelegate::GetCloseFileSystemURLCallback(const GURL& path) { |
+ return base::Callback<void (base::PlatformFileError)>(); |
+} |
+ |
bool MockPluginDelegate::OpenFileSystem( |
const GURL& url, |
fileapi::FileSystemType type, |