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

Unified Diff: webkit/fileapi/sandboxed_file_system_operation.cc

Issue 4821005: Make FileSystemOperation's lifetime more explicit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: w/o destructive_dispatcher Created 10 years, 1 month 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/fileapi/sandboxed_file_system_operation.cc
diff --git a/webkit/fileapi/sandboxed_file_system_operation.cc b/webkit/fileapi/sandboxed_file_system_operation.cc
index fc77ce319a6a00182cb14adbce171a72ff396fa7..4ef710b181827a654bef396162570b4644e04c9c 100644
--- a/webkit/fileapi/sandboxed_file_system_operation.cc
+++ b/webkit/fileapi/sandboxed_file_system_operation.cc
@@ -38,15 +38,19 @@ void SandboxedFileSystemOperation::OpenFileSystem(
void SandboxedFileSystemOperation::CreateFile(
const FilePath& path, bool exclusive) {
- if (!VerifyFileSystemPathForWrite(path, true /* create */, 0))
+ if (!VerifyFileSystemPathForWrite(path, true /* create */, 0)) {
+ delete this;
return;
+ }
FileSystemOperation::CreateFile(path, exclusive);
}
void SandboxedFileSystemOperation::CreateDirectory(
const FilePath& path, bool exclusive, bool recursive) {
- if (!VerifyFileSystemPathForWrite(path, true /* create */, 0))
+ if (!VerifyFileSystemPathForWrite(path, true /* create */, 0)) {
+ delete this;
return;
+ }
FileSystemOperation::CreateDirectory(path, exclusive, recursive);
}
@@ -54,8 +58,10 @@ void SandboxedFileSystemOperation::Copy(
const FilePath& src_path, const FilePath& dest_path) {
if (!VerifyFileSystemPathForRead(src_path) ||
!VerifyFileSystemPathForWrite(dest_path, true /* create */,
- FileSystemQuotaManager::kUnknownSize))
+ FileSystemQuotaManager::kUnknownSize)) {
+ delete this;
return;
+ }
FileSystemOperation::Copy(src_path, dest_path);
}
@@ -63,39 +69,51 @@ void SandboxedFileSystemOperation::Move(
const FilePath& src_path, const FilePath& dest_path) {
if (!VerifyFileSystemPathForRead(src_path) ||
!VerifyFileSystemPathForWrite(dest_path, true /* create */,
- FileSystemQuotaManager::kUnknownSize))
+ FileSystemQuotaManager::kUnknownSize)) {
+ delete this;
return;
+ }
FileSystemOperation::Move(src_path, dest_path);
}
void SandboxedFileSystemOperation::DirectoryExists(const FilePath& path) {
- if (!VerifyFileSystemPathForRead(path))
+ if (!VerifyFileSystemPathForRead(path)) {
+ delete this;
return;
+ }
FileSystemOperation::DirectoryExists(path);
}
void SandboxedFileSystemOperation::FileExists(const FilePath& path) {
- if (!VerifyFileSystemPathForRead(path))
+ if (!VerifyFileSystemPathForRead(path)) {
+ delete this;
return;
+ }
FileSystemOperation::FileExists(path);
}
void SandboxedFileSystemOperation::GetMetadata(const FilePath& path) {
- if (!VerifyFileSystemPathForRead(path))
+ if (!VerifyFileSystemPathForRead(path)) {
+ delete this;
return;
+ }
FileSystemOperation::GetMetadata(path);
}
void SandboxedFileSystemOperation::ReadDirectory(const FilePath& path) {
- if (!VerifyFileSystemPathForRead(path))
+ if (!VerifyFileSystemPathForRead(path)) {
+ delete this;
return;
+ }
FileSystemOperation::ReadDirectory(path);
}
void SandboxedFileSystemOperation::Remove(
const FilePath& path, bool recursive) {
- if (!VerifyFileSystemPathForWrite(path, false /* create */, 0))
+ if (!VerifyFileSystemPathForWrite(path, false /* create */, 0)) {
+ delete this;
return;
+ }
FileSystemOperation::Remove(path, recursive);
}
@@ -103,23 +121,29 @@ void SandboxedFileSystemOperation::Write(
scoped_refptr<URLRequestContext> url_request_context,
const FilePath& path, const GURL& blob_url, int64 offset) {
if (!VerifyFileSystemPathForWrite(path, true /* create */,
- FileSystemQuotaManager::kUnknownSize))
+ FileSystemQuotaManager::kUnknownSize)) {
+ delete this;
return;
+ }
FileSystemOperation::Write(url_request_context, path, blob_url, offset);
}
void SandboxedFileSystemOperation::Truncate(
const FilePath& path, int64 length) {
- if (!VerifyFileSystemPathForWrite(path, false /* create */, 0))
+ if (!VerifyFileSystemPathForWrite(path, false /* create */, 0)) {
+ delete this;
return;
+ }
FileSystemOperation::Truncate(path, length);
}
void SandboxedFileSystemOperation::TouchFile(const FilePath& path,
const base::Time& last_access_time,
const base::Time& last_modified_time) {
- if (!VerifyFileSystemPathForWrite(path, true /* create */, 0))
+ if (!VerifyFileSystemPathForWrite(path, true /* create */, 0)) {
+ delete this;
return;
+ }
FileSystemOperation::TouchFile(path, last_access_time, last_modified_time);
}
@@ -127,6 +151,7 @@ void SandboxedFileSystemOperation::DidGetRootPath(
bool success, const FilePath& path, const std::string& name) {
DCHECK(success || path.empty());
dispatcher()->DidOpenFileSystem(name, path);
+ delete this;
}
bool SandboxedFileSystemOperation::VerifyFileSystemPathForRead(

Powered by Google App Engine
This is Rietveld 408576698