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 d2be7ccb80dc8d3e576f38d2d4118ac9ed7013ce..335cd02bbd10ab0dbeee56561837366d10fa1382 100644 |
--- a/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
+++ b/content/renderer/pepper/pepper_plugin_delegate_impl.cc |
@@ -295,6 +295,7 @@ class AsyncOpenFileSystemURLCallbackTranslator |
base::PlatformFile invalid_file = base::kInvalidPlatformFileValue; |
callback_.Run(error_code, |
base::PassPlatformFile(&invalid_file), |
+ quota::kQuotaLimitTypeUnknown, |
webkit::ppapi::PluginDelegate::NotifyCloseFileCallback()); |
} |
@@ -302,9 +303,11 @@ class AsyncOpenFileSystemURLCallbackTranslator |
NOTREACHED(); |
} |
- virtual void DidOpenFile(base::PlatformFile file) OVERRIDE { |
+ virtual void DidOpenFile(base::PlatformFile file, |
+ quota::QuotaLimitType quota_policy) OVERRIDE { |
callback_.Run(base::PLATFORM_FILE_OK, |
base::PassPlatformFile(&file), |
+ quota_policy, |
close_file_callback_); |
// Make sure we won't leak file handle if the requester has died. |
if (file != base::kInvalidPlatformFileValue) { |