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

Unified Diff: webkit/browser/fileapi/test_file_system_backend.cc

Issue 18668003: SyncFS: Introduce SyncFileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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/browser/fileapi/test_file_system_backend.cc
diff --git a/webkit/browser/fileapi/test_file_system_backend.cc b/webkit/browser/fileapi/test_file_system_backend.cc
index b20ce34b6aa9e7c554f60ea8ad82c0d225ae1a1b..e29232f4607d95ddc74445cd390b4750903cd9c0 100644
--- a/webkit/browser/fileapi/test_file_system_backend.cc
+++ b/webkit/browser/fileapi/test_file_system_backend.cc
@@ -159,12 +159,16 @@ void TestFileSystemBackend::InitializeFileSystem(
base::PLATFORM_FILE_OK);
}
-FileSystemFileUtil* TestFileSystemBackend::GetFileUtil(FileSystemType type) {
+FileSystemFileUtil* TestFileSystemBackend::GetFileUtil(
+ FileSystemType type,
+ const FileSystemContext* context) {
DCHECK(local_file_util_.get());
return local_file_util_->sync_file_util();
}
-AsyncFileUtil* TestFileSystemBackend::GetAsyncFileUtil(FileSystemType type) {
+AsyncFileUtil* TestFileSystemBackend::GetAsyncFileUtil(
+ FileSystemType type,
+ const FileSystemContext* context) {
return local_file_util_.get();
}

Powered by Google App Engine
This is Rietveld 408576698