| Index: webkit/tools/test_shell/simple_file_system.h
|
| diff --git a/webkit/tools/test_shell/simple_file_system.h b/webkit/tools/test_shell/simple_file_system.h
|
| index a4d1e1278c7510704de62b743efa97d9615906e1..6d85409039d2d4ca6349c2991529d018ec662d0d 100644
|
| --- a/webkit/tools/test_shell/simple_file_system.h
|
| +++ b/webkit/tools/test_shell/simple_file_system.h
|
| @@ -42,6 +42,9 @@ class SimpleFileSystem
|
| long long size,
|
| bool create,
|
| WebKit::WebFileSystemCallbacks* callbacks);
|
| + void DeleteFileSystem(WebKit::WebFrame* frame,
|
| + WebKit::WebFileSystem::Type type,
|
| + WebKit::WebFileSystemCallbacks* callbacks);
|
|
|
| fileapi::FileSystemContext* file_system_context() {
|
| return file_system_context_.get();
|
| @@ -115,6 +118,8 @@ class SimpleFileSystem
|
| ReadDirectoryHandler(WebKit::WebFileSystemCallbacks* callbacks);
|
| fileapi::FileSystemContext::OpenFileSystemCallback OpenFileSystemHandler(
|
| WebKit::WebFileSystemCallbacks* callbacks);
|
| + fileapi::FileSystemContext::DeleteFileSystemCallback DeleteFileSystemHandler(
|
| + WebKit::WebFileSystemCallbacks* callbacks);
|
| fileapi::FileSystemOperationInterface::SnapshotFileCallback
|
| SnapshotFileHandler(const GURL& blob_url,
|
| WebKit::WebFileSystemCallbacks* callbacks);
|
| @@ -132,6 +137,8 @@ class SimpleFileSystem
|
| void DidOpenFileSystem(WebKit::WebFileSystemCallbacks* callbacks,
|
| base::PlatformFileError result,
|
| const std::string& name, const GURL& root);
|
| + void DidDeleteFileSystem(WebKit::WebFileSystemCallbacks* callbacks,
|
| + base::PlatformFileError result);
|
| void DidCreateSnapshotFile(
|
| const GURL& blob_url,
|
| WebKit::WebFileSystemCallbacks* callbacks,
|
|
|