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

Unified Diff: chrome/browser/chromeos/login/parallel_authenticator_unittest.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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: chrome/browser/chromeos/login/parallel_authenticator_unittest.cc
diff --git a/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc b/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc
index 0ad3bdd47d1fb7d49c90faeccadd9bc7cf0948f8..dad81fcfe2584e8e73e9bcf0dbf5f759e9fa0716 100644
--- a/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc
+++ b/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc
@@ -97,7 +97,7 @@ class ParallelAuthenticatorTest : public testing::Test {
base::FilePath out;
FILE* tmp_file = base::CreateAndOpenTemporaryFile(&out);
EXPECT_NE(tmp_file, static_cast<FILE*>(NULL));
- EXPECT_EQ(file_util::WriteFile(out, data, data_len), data_len);
+ EXPECT_EQ(base::WriteFile(out, data, data_len), data_len);
EXPECT_TRUE(base::CloseFile(tmp_file));
return out;
}

Powered by Google App Engine
This is Rietveld 408576698