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

Unified Diff: components/filesystem/files_test_base.cc

Issue 1166763002: Reland "Mandoline filesystem: Build the filesystem on windows." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DWORD -> INT for real checking. (This was wrong.) Created 5 years, 7 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/file_system_impl.cc ('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 bca5ad899a25029c5581339175f666d72e751d4d..5bd477a124eb9c4cedaa580a405fa42b296f8c96 100644
--- a/components/filesystem/files_test_base.cc
+++ b/components/filesystem/files_test_base.cc
@@ -25,10 +25,10 @@ void FilesTestBase::SetUp() {
}
void FilesTestBase::GetTemporaryRoot(DirectoryPtr* directory) {
- Error error = ERROR_FAILED;
+ FileError error = FILE_ERROR_FAILED;
files()->OpenFileSystem("temp", GetProxy(directory), Capture(&error));
ASSERT_TRUE(files().WaitForIncomingResponse());
- ASSERT_EQ(ERROR_OK, error);
+ ASSERT_EQ(FILE_ERROR_OK, error);
}
} // namespace filesystem
« no previous file with comments | « components/filesystem/file_system_impl.cc ('k') | components/filesystem/public/interfaces/directory.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698