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

Unified Diff: components/filesystem/files_test_base.cc

Issue 1176653002: mandoline filesystem: add a sqlite3 vfs to proxy filesystem usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix win 8 Created 5 years, 6 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
« no previous file with comments | « components/filesystem/files_test_base.h ('k') | components/filesystem/public/interfaces/directory.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/filesystem/files_test_base.cc
diff --git a/components/filesystem/files_test_base.cc b/components/filesystem/files_test_base.cc
index 5bd477a124eb9c4cedaa580a405fa42b296f8c96..47f7d61285930737136d96d7ee7b6e60e085793a 100644
--- a/components/filesystem/files_test_base.cc
+++ b/components/filesystem/files_test_base.cc
@@ -7,6 +7,7 @@
#include "components/filesystem/public/interfaces/directory.mojom.h"
#include "components/filesystem/public/interfaces/types.mojom.h"
#include "mojo/application/public/cpp/application_impl.h"
+#include "mojo/util/capture_util.h"
namespace filesystem {
@@ -26,7 +27,7 @@ void FilesTestBase::SetUp() {
void FilesTestBase::GetTemporaryRoot(DirectoryPtr* directory) {
FileError error = FILE_ERROR_FAILED;
- files()->OpenFileSystem("temp", GetProxy(directory), Capture(&error));
+ files()->OpenFileSystem("temp", GetProxy(directory), mojo::Capture(&error));
ASSERT_TRUE(files().WaitForIncomingResponse());
ASSERT_EQ(FILE_ERROR_OK, error);
}
« no previous file with comments | « components/filesystem/files_test_base.h ('k') | components/filesystem/public/interfaces/directory.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698