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

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

Issue 18668003: SyncFS: Introduce SyncFileSystemBackend (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: lazy initialization 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/sandbox_file_system_backend_unittest.cc
diff --git a/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc b/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
index 449e9fecd3d062a579cb3b8a341da6f6e9b5821e..80ec4fb5ce795e675ca77423f1fb99fd8a192a04 100644
--- a/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
+++ b/webkit/browser/fileapi/sandbox_file_system_backend_unittest.cc
@@ -93,7 +93,10 @@ class SandboxFileSystemBackendTest : public testing::Test {
}
void SetUpNewBackend(const FileSystemOptions& options) {
- backend_.reset(new SandboxFileSystemBackend(context_.get(), options));
+ backend_.reset(new SandboxFileSystemBackend(
+ context_.get(),
+ base::MessageLoopProxy::current().get(),
+ options));
}
SandboxFileSystemBackend::OriginEnumerator* CreateOriginEnumerator() const {

Powered by Google App Engine
This is Rietveld 408576698