summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/simple_file_system.cc
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/simple_file_system.cc')
-rw-r--r--webkit/tools/test_shell/simple_file_system.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/simple_file_system.cc b/webkit/tools/test_shell/simple_file_system.cc
index 6a26615..8e059ea 100644
--- a/webkit/tools/test_shell/simple_file_system.cc
+++ b/webkit/tools/test_shell/simple_file_system.cc
@@ -130,10 +130,10 @@ void SimpleFileSystem::copy(
}
void SimpleFileSystem::remove(
- const WebString& path, bool recursive, WebFileSystemCallbacks* callbacks) {
+ const WebString& path, WebFileSystemCallbacks* callbacks) {
FilePath filepath(webkit_glue::WebStringToFilePath(path));
- GetNewOperation(callbacks)->Remove(filepath, recursive);
+ GetNewOperation(callbacks)->Remove(filepath);
}
void SimpleFileSystem::readMetadata(