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

Unified Diff: webkit/fileapi/file_system_operation.h

Issue 10387054: Implement SandboxFileWriter and rewrite FileWriterDelegate to use it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test fix Created 8 years, 7 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
« no previous file with comments | « no previous file | webkit/fileapi/file_system_operation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_operation.h
diff --git a/webkit/fileapi/file_system_operation.h b/webkit/fileapi/file_system_operation.h
index 1373df441b037ae648b5cd68756b46e8fa9ea5d6..6036bc6f9a86b7ef41e280b00596c9b86532d6e0 100644
--- a/webkit/fileapi/file_system_operation.h
+++ b/webkit/fileapi/file_system_operation.h
@@ -174,7 +174,6 @@ class FileSystemOperation : public FileSystemOperationInterface {
bool recursive);
void DoCopy(const StatusCallback& callback);
void DoMove(const StatusCallback& callback);
- void DoWrite(scoped_ptr<net::URLRequest> blob_request);
void DoTruncate(const StatusCallback& callback, int64 length);
void DoOpenFile(const OpenFileCallback& callback, int file_flags);
@@ -218,13 +217,6 @@ class FileSystemOperation : public FileSystemOperationInterface {
base::PassPlatformFile file,
bool created);
- // Helper for Write().
- void OnFileOpenedForWrite(scoped_ptr<net::URLRequest> blob_request,
- FileSystemOperationContext* context_unused,
- base::PlatformFileError rv,
- base::PassPlatformFile file,
- bool created);
-
// Checks the validity of a given |path_url| and and populates
// |path| and |file_util| for |mode|.
base::PlatformFileError SetUpFileSystemPath(
« no previous file with comments | « no previous file | webkit/fileapi/file_system_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698