Index: webkit/fileapi/file_system_operation.h |
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h |
index 6542806853b47ecdf422b4f815d4a383331a870f..4630fe7b1cd0a9f99540940c2a26b1ff7159dd27 100644 |
--- a/webkit/fileapi/file_system_operation.h |
+++ b/webkit/fileapi/file_system_operation.h |
@@ -127,12 +127,11 @@ class FileSystemOperation { |
// Checks the validity of a given |path| for writing. |
// Returns true if the given |path| is a valid FileSystem path, and |
- // its origin embedded in the path has the right to write as much as |
- // the given |growth|. |
+ // its origin embedded in the path has the right to write. |
// Otherwise it fires dispatcher's DidFail method with |
// PLATFORM_FILE_ERROR_SECURITY if the path is not valid for writing, |
// or with PLATFORM_FILE_ERROR_NO_SPACE if the origin is not allowed to |
- // increase the usage by |growth|. |
+ // write to the storage. |
// In either case it returns false after firing DidFail. |
// If |create| flag is true this also checks if the |path| contains |
// any restricted names and chars. If it does, the call fires dispatcher's |
@@ -140,8 +139,7 @@ class FileSystemOperation { |
// (Note: this doesn't delete this when it calls DidFail and returns false; |
// it's the caller's responsibility.) |
bool VerifyFileSystemPathForWrite(const FilePath& path, |
- bool create, |
- int64 growth); |
+ bool create); |
#ifndef NDEBUG |
enum OperationType { |