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

Unified Diff: webkit/fileapi/sandbox_file_stream_writer.h

Issue 15442002: Move FileAPI sandboxed filesystem related code from webkit/fileapi to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 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 | « webkit/fileapi/sandbox_directory_database_unittest.cc ('k') | webkit/fileapi/sandbox_file_stream_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/sandbox_file_stream_writer.h
diff --git a/webkit/fileapi/sandbox_file_stream_writer.h b/webkit/fileapi/sandbox_file_stream_writer.h
deleted file mode 100644
index 28efcea27c5806cb8e0927161ec8590e743579c5..0000000000000000000000000000000000000000
--- a/webkit/fileapi/sandbox_file_stream_writer.h
+++ /dev/null
@@ -1,92 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef WEBKIT_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_
-#define WEBKIT_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_
-
-#include "base/files/file_path.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/platform_file.h"
-#include "googleurl/src/gurl.h"
-#include "webkit/fileapi/file_stream_writer.h"
-#include "webkit/fileapi/file_system_types.h"
-#include "webkit/fileapi/file_system_url.h"
-#include "webkit/fileapi/task_runner_bound_observer_list.h"
-#include "webkit/quota/quota_types.h"
-#include "webkit/storage/webkit_storage_export.h"
-
-namespace fileapi {
-
-class FileSystemContext;
-class FileSystemQuotaUtil;
-class LocalFileStreamWriter;
-
-class WEBKIT_STORAGE_EXPORT_PRIVATE SandboxFileStreamWriter
- : public FileStreamWriter {
- public:
- SandboxFileStreamWriter(FileSystemContext* file_system_context,
- const FileSystemURL& url,
- int64 initial_offset,
- const UpdateObserverList& observers);
- virtual ~SandboxFileStreamWriter();
-
- // FileStreamWriter overrides.
- virtual int Write(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback) OVERRIDE;
- virtual int Cancel(const net::CompletionCallback& callback) OVERRIDE;
- virtual int Flush(const net::CompletionCallback& callback) OVERRIDE;
-
- // Used only by tests.
- void set_default_quota(int64 quota) {
- default_quota_ = quota;
- }
-
- private:
- // Performs quota calculation and calls local_file_writer_->Write().
- int WriteInternal(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback);
-
- // Callbacks that are chained for the first write. This eventually calls
- // WriteInternal.
- void DidGetFileInfo(const net::CompletionCallback& callback,
- base::PlatformFileError file_error,
- const base::PlatformFileInfo& file_info,
- const base::FilePath& platform_path);
- void DidGetUsageAndQuota(const net::CompletionCallback& callback,
- quota::QuotaStatusCode status,
- int64 usage, int64 quota);
- void DidInitializeForWrite(net::IOBuffer* buf, int buf_len,
- const net::CompletionCallback& callback,
- int init_status);
-
- void DidWrite(const net::CompletionCallback& callback, int write_response);
-
- // Stops the in-flight operation, calls |cancel_callback_| and returns true
- // if there's a pending cancel request.
- bool CancelIfRequested();
-
- scoped_refptr<FileSystemContext> file_system_context_;
- FileSystemURL url_;
- int64 initial_offset_;
- scoped_ptr<LocalFileStreamWriter> local_file_writer_;
- net::CompletionCallback cancel_callback_;
-
- UpdateObserverList observers_;
-
- base::FilePath file_path_;
- int64 file_size_;
- int64 total_bytes_written_;
- int64 allowed_bytes_to_write_;
- bool has_pending_operation_;
-
- int64 default_quota_;
-
- base::WeakPtrFactory<SandboxFileStreamWriter> weak_factory_;
-
- DISALLOW_COPY_AND_ASSIGN(SandboxFileStreamWriter);
-};
-
-} // namespace fileapi
-
-#endif // WEBKIT_FILEAPI_SANDBOX_FILE_STREAM_WRITER_H_
« no previous file with comments | « webkit/fileapi/sandbox_directory_database_unittest.cc ('k') | webkit/fileapi/sandbox_file_stream_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698