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

Unified Diff: webkit/tools/test_shell/simple_file_system.h

Issue 10824305: Wire-up DeleteFileSystem to DumpRenderTree (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
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,

Powered by Google App Engine
This is Rietveld 408576698