Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(599)

Unified Diff: webkit/chromeos/fileapi/remote_file_system_operation.cc

Issue 14265022: [Quota][FileAPI] Add quota policy to FileSystemOperationContext (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: drop .gitmodule change Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webkit/chromeos/fileapi/remote_file_system_operation.cc
diff --git a/webkit/chromeos/fileapi/remote_file_system_operation.cc b/webkit/chromeos/fileapi/remote_file_system_operation.cc
index 5f0843ec8997e772568075b18dad932e0b76d884..6b319e5397811dfe7876acd6c03f407d7be1c4bc 100644
--- a/webkit/chromeos/fileapi/remote_file_system_operation.cc
+++ b/webkit/chromeos/fileapi/remote_file_system_operation.cc
@@ -319,8 +319,9 @@ void RemoteFileSystemOperation::DidOpenFile(
const OpenFileCallback& callback,
base::PlatformFileError result,
base::PlatformFile file,
- base::ProcessHandle peer_handle) {
- callback.Run(result, file, peer_handle);
+ base::ProcessHandle peer_handle,
+ quota::QuotaLimitType quota_limit_type) {
+ callback.Run(result, file, peer_handle, quota_limit_type);
}
} // namespace chromeos

Powered by Google App Engine
This is Rietveld 408576698