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

Unified Diff: webkit/support/webkit_support.cc

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/support/webkit_support.cc
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc
index 95e554b3c573833fec9be25c359bb6ddd01b6136..9614328a87f9096a5d210fe82968eaf91244d386 100644
--- a/webkit/support/webkit_support.cc
+++ b/webkit/support/webkit_support.cc
@@ -804,6 +804,13 @@ void OpenFileSystem(WebFrame* frame, WebFileSystem::Type type,
fileSystem->OpenFileSystem(frame, type, size, create, callbacks);
}
+void DeleteFileSystem(WebFrame* frame, WebFileSystem::Type type,
+ WebFileSystemCallbacks* callbacks) {
+ SimpleFileSystem* fileSystem = static_cast<SimpleFileSystem*>(
+ test_environment->webkit_platform_support()->fileSystem());
+ fileSystem->DeleteFileSystem(frame, type, callbacks);
+}
+
WebKit::WebString RegisterIsolatedFileSystem(
const WebKit::WebVector<WebKit::WebString>& filenames) {
fileapi::IsolatedContext::FileInfoSet files;

Powered by Google App Engine
This is Rietveld 408576698